summaryrefslogtreecommitdiff
path: root/jobs
diff options
authorDaniel Manrique <roadmr@ubuntu.com>2014-07-16 10:59:33 -0400
committerDaniel Manrique <roadmr@ubuntu.com>2014-07-16 10:59:33 -0400
commitf5976f7f6bd8a5cded737c0a40bdb56fe2729e69 (patch)
tree54a5abc1a3b4e886ab541cf42e7258045aaccb6b /jobs
parent59beb79e138ddfd1370f0d5c0f08258281da3246 (diff)
providers:checkbox: updated multitouch test definitions
The 3- and 4-finger tap tests now disable/enable unity appropriately to ensure correct detection of tap events. Instructions were updated to account for this.
Diffstat (limited to 'jobs')
-rw-r--r--jobs/touchscreen.txt.in23
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