diff options
-rw-r--r-- | jobs/touchscreen.txt.in | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/jobs/touchscreen.txt.in b/jobs/touchscreen.txt.in index 2b67945..92cc93c 100644 --- a/jobs/touchscreen.txt.in +++ b/jobs/touchscreen.txt.in @@ -95,27 +95,36 @@ plugin: user-interact-verify id: touchscreen/3-touch-tap depends: touchscreen/multitouch-automated estimated_duration: 15.0 -_description: +_description: PURPOSE: Validate that 3-touch tap is operating as expected STEPS: - 1. Place one finger at a time. + 1. Tap the screen with 3 fingers simultaneously. 2. Once 3 fingers are on the screen you should see the indicator they are recognized. VERIFICATION: Did you see the green circles around the three fingers? -command: qmlscene $PLAINBOX_PROVIDER_DATA/touch_tap_test.qml --touchpoints=3 2>&1 | grep -o PASS +command: + manage_compiz_plugin unityshell disable + qmlscene $PLAINBOX_PROVIDER_DATA/touch_tap_test.qml --touchpoints=3 2>&1 | grep -o PASS + EXIT=$? + manage_compiz_plugin unityshell enable + exit $EXIT plugin: user-interact-verify id: touchscreen/4-touch-tap depends: touchscreen/multitouch-automated estimated_duration: 15.0 -_description: +_description: PURPOSE: Validate that 4-touch tap is operating as expected STEPS: - 1. Place one finger at a time. + 1. Tap the screen with 4 fingers simultaneously. 2. Once 4 fingers are on the screen you should see the indicator they are recognized. VERIFICATION: Did you see the green circles around the four fingers? -command: qmlscene $PLAINBOX_PROVIDER_DATA/touch_tap_test.qml --touchpoints=4 2>&1 | grep -o PASS - +command: + manage_compiz_plugin unityshell disable + qmlscene $PLAINBOX_PROVIDER_DATA/touch_tap_test.qml --touchpoints=4 2>&1 | grep -o PASS + EXIT=$? + manage_compiz_plugin unityshell enable + exit $EXIT |