Merge lp:~cr3/checkbox/package_linux into lp:checkbox

Proposed by Marc Tardif
Status: Merged
Approved by: Brendan Donegan
Approved revision: 1754
Merged at revision: 1754
Proposed branch: lp:~cr3/checkbox/package_linux
Merge into: lp:checkbox
Diff against target: 431 lines (+6/-53)
13 files modified
debian/changelog (+1/-0)
jobs/benchmarks.txt.in (+2/-2)
jobs/cpu.txt.in (+0/-4)
jobs/daemons.txt.in (+0/-1)
jobs/disk.txt.in (+0/-4)
jobs/memory.txt.in (+0/-1)
jobs/miscellanea.txt.in (+0/-2)
jobs/networking.txt.in (+1/-2)
jobs/panel_reboot.txt.in (+0/-1)
jobs/power-management.txt.in (+2/-6)
jobs/stress.txt.in (+0/-1)
jobs/suspend.txt.in (+0/-14)
jobs/usb.txt.in (+0/-15)
To merge this branch: bzr merge lp:~cr3/checkbox/package_linux
Reviewer Review Type Date Requested Status
Brendan Donegan (community) Approve
Review via email: mp+128739@code.launchpad.net

Commit message

Merged removal of package.name == 'linux' from jobs.

To post a comment you must log in.
Revision history for this message
Brendan Donegan (brendan-donegan) wrote :

At last! Hopefully they've all been caught!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2012-10-09 13:40:50 +0000
+++ debian/changelog 2012-10-09 15:26:23 +0000
@@ -102,6 +102,7 @@
102 dvd write tests (LP: #1057762)102 dvd write tests (LP: #1057762)
103 * [FEATURE] jobs/touchpad.txt.in, jobs/touchscreen.txt.in: Added singletouch103 * [FEATURE] jobs/touchpad.txt.in, jobs/touchscreen.txt.in: Added singletouch
104 and multitouch for touchpads and touchscreens.104 and multitouch for touchpads and touchscreens.
105 * Removed package.name == 'linux' only needed by the apport_prompt plugin.
105106
106 [Sean Feole]107 [Sean Feole]
107 * [FEATURE] scripts/battery_test: measures battery capacity before and after108 * [FEATURE] scripts/battery_test: measures battery capacity before and after
108109
=== modified file 'jobs/benchmarks.txt.in'
--- jobs/benchmarks.txt.in 2012-08-08 11:30:42 +0000
+++ jobs/benchmarks.txt.in 2012-10-09 15:26:23 +0000
@@ -6,7 +6,7 @@
6 cat <<'EOF' | run_templates -t -s 'udev_resource | filter_templates -w "category=DISK"'6 cat <<'EOF' | run_templates -t -s 'udev_resource | filter_templates -w "category=DISK"'
7 plugin: shell7 plugin: shell
8 name: benchmarks/disk/hdparm-read_`ls /sys$path/block`8 name: benchmarks/disk/hdparm-read_`ls /sys$path/block`
9 requires: device.path == "$path" and package.name == 'linux'9 requires: device.path == "$path"
10 user: root10 user: root
11 command: hdparm -t /dev/`ls /sys$path/block | sed 's|!|/|'` | sed -e :a -e '$!N;s/\n/ /;ta' | sed 's/.*= *//'11 command: hdparm -t /dev/`ls /sys$path/block | sed 's|!|/|'` | sed -e :a -e '$!N;s/\n/ /;ta' | sed 's/.*= *//'
12 description: This test runs hdparm timing of device reads as a benchmark for $path12 description: This test runs hdparm timing of device reads as a benchmark for $path
@@ -20,7 +20,7 @@
20 cat <<'EOF' | run_templates -t -s 'udev_resource | filter_templates -w "category=DISK"'20 cat <<'EOF' | run_templates -t -s 'udev_resource | filter_templates -w "category=DISK"'
21 plugin: shell21 plugin: shell
22 name: benchmarks/disk/hdparm-cache-read_`ls /sys$path/block`22 name: benchmarks/disk/hdparm-cache-read_`ls /sys$path/block`
23 requires: device.path == "$path" and package.name == 'linux'23 requires: device.path == "$path"
24 user: root24 user: root
25 command: hdparm -T /dev/`ls /sys$path/block | sed 's|!|/|'` | sed -e :a -e '$!N;s/\n/ /;ta' | sed 's/.*= *//'25 command: hdparm -T /dev/`ls /sys$path/block | sed 's|!|/|'` | sed -e :a -e '$!N;s/\n/ /;ta' | sed 's/.*= *//'
26 description: This test runs hdparm timing of cache reads as a benchmark for $path26 description: This test runs hdparm timing of cache reads as a benchmark for $path
2727
=== modified file 'jobs/cpu.txt.in'
--- jobs/cpu.txt.in 2012-09-12 12:58:35 +0000
+++ jobs/cpu.txt.in 2012-10-09 15:26:23 +0000
@@ -1,7 +1,6 @@
1plugin: shell1plugin: shell
2name: cpu/scaling_test2name: cpu/scaling_test
3requires:3requires:
4 package.name == 'linux'
5 package.name == 'fwts'4 package.name == 'fwts'
6user: root5user: root
7environ: CHECKBOX_DATA6environ: CHECKBOX_DATA
@@ -18,14 +17,12 @@
1817
19plugin: shell18plugin: shell
20name: cpu/clocktest19name: cpu/clocktest
21requires: package.name == 'linux'
22command: clocktest20command: clocktest
23_description:21_description:
24 Test for clock jitter.22 Test for clock jitter.
2523
26plugin: shell24plugin: shell
27name: cpu/offlining_test25name: cpu/offlining_test
28requires: package.name == 'linux'
29user: root26user: root
30command: cpu_offlining27command: cpu_offlining
31_description:28_description:
@@ -40,7 +37,6 @@
4037
41plugin: shell38plugin: shell
42name: cpu/frequency_governors39name: cpu/frequency_governors
43requires: package.name == 'linux'
44user: root40user: root
45command: nice -n -20 frequency_governors_test --debug41command: nice -n -20 frequency_governors_test --debug
46_description:42_description:
4743
=== modified file 'jobs/daemons.txt.in'
--- jobs/daemons.txt.in 2011-10-05 21:01:59 +0000
+++ jobs/daemons.txt.in 2012-10-09 15:26:23 +0000
@@ -56,7 +56,6 @@
56name: daemons/udevd56name: daemons/udevd
57requires:57requires:
58 package.name == 'udevd'58 package.name == 'udevd'
59 package.name == 'linux'
60command: pgrep -f '/sbin/udevd' >/dev/null59command: pgrep -f '/sbin/udevd' >/dev/null
61_description: Test if the udevd daemon is running when the package is installed.60_description: Test if the udevd daemon is running when the package is installed.
6261
6362
=== modified file 'jobs/disk.txt.in'
--- jobs/disk.txt.in 2012-08-08 20:22:25 +0000
+++ jobs/disk.txt.in 2012-10-09 15:26:23 +0000
@@ -14,7 +14,6 @@
14 requires: 14 requires:
15 device.path == "$path"15 device.path == "$path"
16 block_device.`ls /sys$path/block`_state != 'removable'16 block_device.`ls /sys$path/block`_state != 'removable'
17 package.name == 'linux'
18 user: root17 user: root
19 command: disk_stats_test `ls /sys$path/block | sed 's|!|/|'`18 command: disk_stats_test `ls /sys$path/block | sed 's|!|/|'`
20 description: This test checks disk stats, generates some activity and rechecks stats to verify they've changed. It also verifies that disks appear in the various files they're supposed to.19 description: This test checks disk stats, generates some activity and rechecks stats to verify they've changed. It also verifies that disks appear in the various files they're supposed to.
@@ -24,7 +23,6 @@
24name: disk/smart23name: disk/smart
25requires:24requires:
26 package.name == 'smartmontools'25 package.name == 'smartmontools'
27 package.name == 'linux'
28 device.category == 'DISK'26 device.category == 'DISK'
29_description: SMART test27_description: SMART test
30command:28command:
@@ -69,7 +67,6 @@
69 requires:67 requires:
70 device.path == "$path"68 device.path == "$path"
71 block_device.`ls /sys$path/block`_state != 'removable'69 block_device.`ls /sys$path/block`_state != 'removable'
72 package.name == 'linux'
73 description: Disk performance test for $product70 description: Disk performance test for $product
74 user: root71 user: root
75 command: disk_read_performance_test `ls /sys$path/block | sed 's|!|/|'`72 command: disk_read_performance_test `ls /sys$path/block | sed 's|!|/|'`
@@ -88,7 +85,6 @@
88 requires:85 requires:
89 device.path == "$path"86 device.path == "$path"
90 block_device.`ls /sys$path/block`_state != 'removable'87 block_device.`ls /sys$path/block`_state != 'removable'
91 package.name == 'linux'
92 description: Disk I/O stress test for $product88 description: Disk I/O stress test for $product
93 command: storage_test `ls /sys$path/block | sed 's|!|/|'`89 command: storage_test `ls /sys$path/block | sed 's|!|/|'`
94 EOF90 EOF
9591
=== modified file 'jobs/memory.txt.in'
--- jobs/memory.txt.in 2012-01-18 15:31:23 +0000
+++ jobs/memory.txt.in 2012-10-09 15:26:23 +0000
@@ -8,7 +8,6 @@
88
9plugin: shell9plugin: shell
10name: memory/check10name: memory/check
11requires: package.name == 'linux'
12user: root11user: root
13command: memory_test12command: memory_test
14_description:13_description:
1514
=== modified file 'jobs/miscellanea.txt.in'
--- jobs/miscellanea.txt.in 2012-08-22 14:24:59 +0000
+++ jobs/miscellanea.txt.in 2012-10-09 15:26:23 +0000
@@ -15,7 +15,6 @@
15plugin: manual15plugin: manual
16name: miscellanea/chvt16name: miscellanea/chvt
17requires:17requires:
18 package.name == 'linux'
19 package.name == 'kbd'18 package.name == 'kbd'
20user: root19user: root
21command: cycle_vts20command: cycle_vts
@@ -30,7 +29,6 @@
30plugin: shell29plugin: shell
31name: miscellanea/fwts_test30name: miscellanea/fwts_test
32requires:31requires:
33 package.name == 'linux'
34 package.name == 'fwts'32 package.name == 'fwts'
35user: root33user: root
36_description:34_description:
3735
=== modified file 'jobs/networking.txt.in'
--- jobs/networking.txt.in 2012-09-27 09:00:46 +0000
+++ jobs/networking.txt.in 2012-10-09 15:26:23 +0000
@@ -21,7 +21,7 @@
21 cat <<'EOF' | run_templates -s 'udev_resource | filter_templates -w "category=NETWORK" | awk "/path: / { print \$2 }" | xargs -n 1 sh -c "for i in \`ls /sys\$0/net 2>/dev/null\`; do echo \$0 \$i; done"'21 cat <<'EOF' | run_templates -s 'udev_resource | filter_templates -w "category=NETWORK" | awk "/path: / { print \$2 }" | xargs -n 1 sh -c "for i in \`ls /sys\$0/net 2>/dev/null\`; do echo \$0 \$i; done"'
22 plugin: manual22 plugin: manual
23 name: networking/info_$223 name: networking/info_$2
24 requires: device.path == "$1" and package.name == 'linux'24 requires: device.path == "$1"
25 command: network_info $225 command: network_info $2
26 _description:26 _description:
27 PURPOSE:27 PURPOSE:
@@ -114,7 +114,6 @@
114 plugin: shell114 plugin: shell
115 name: networking/multi_nic_$2115 name: networking/multi_nic_$2
116 requires:116 requires:
117 package.name == 'linux'
118 package.name == 'ethtool' and package.name == 'nmap'117 package.name == 'ethtool' and package.name == 'nmap'
119 device.path == "$1"118 device.path == "$1"
120 user: root119 user: root
121120
=== modified file 'jobs/panel_reboot.txt.in'
--- jobs/panel_reboot.txt.in 2011-10-07 18:59:33 +0000
+++ jobs/panel_reboot.txt.in 2012-10-09 15:26:23 +0000
@@ -1,6 +1,5 @@
1plugin: manual1plugin: manual
2name: panel_reboot_test2name: panel_reboot_test
3requires: package.name == 'linux'
4_description:3_description:
5 PURPOSE:4 PURPOSE:
6 This test will verify that you can reboot your system from the desktop menu5 This test will verify that you can reboot your system from the desktop menu
76
=== modified file 'jobs/power-management.txt.in'
--- jobs/power-management.txt.in 2012-09-21 16:58:06 +0000
+++ jobs/power-management.txt.in 2012-10-09 15:26:23 +0000
@@ -15,7 +15,6 @@
15user: root15user: root
16_description: Test ACPI Wakealarm (fwts wakealarm)16_description: Test ACPI Wakealarm (fwts wakealarm)
17requires:17requires:
18 package.name == 'linux'
19 package.name == 'fwts'18 package.name == 'fwts'
20command: fwts_test -w -l $CHECKBOX_DATA/fwts-wakealarm.log19command: fwts_test -w -l $CHECKBOX_DATA/fwts-wakealarm.log
2120
@@ -24,7 +23,6 @@
24depends: power-management/fwts_wakealarm23depends: power-management/fwts_wakealarm
25_description: Attach log from fwts wakealarm test24_description: Attach log from fwts wakealarm test
26requires:25requires:
27 package.name == 'linux'
28 package.name == 'fwts'26 package.name == 'fwts'
29command: [ -e ${CHECKBOX_DATA}/fwts-wakealarm.log ] && cat ${CHECKBOX_DATA}/fwts-wakealarm.log27command: [ -e ${CHECKBOX_DATA}/fwts-wakealarm.log ] && cat ${CHECKBOX_DATA}/fwts-wakealarm.log
3028
@@ -90,7 +88,7 @@
9088
91plugin: manual89plugin: manual
92name: power-management/lid_close90name: power-management/lid_close
93requires: device.product == 'Lid Switch' and package.name == 'linux'91requires: device.product == 'Lid Switch'
94command:92command:
95 for i in `seq 20`; do93 for i in `seq 20`; do
96 state=`cat /proc/acpi/button/lid/LID/state | awk '{print $2}'`94 state=`cat /proc/acpi/button/lid/LID/state | awk '{print $2}'`
@@ -108,7 +106,7 @@
108106
109plugin: manual107plugin: manual
110name: power-management/lid_open108name: power-management/lid_open
111requires: device.product == 'Lid Switch' and package.name == 'linux'109requires: device.product == 'Lid Switch'
112command:110command:
113 for i in `seq 20`; do111 for i in `seq 20`; do
114 state=`cat /proc/acpi/button/lid/LID/state | awk '{print $2}'`112 state=`cat /proc/acpi/button/lid/LID/state | awk '{print $2}'`
@@ -128,7 +126,6 @@
128126
129plugin: shell127plugin: shell
130name: power-management/rtc128name: power-management/rtc
131requires: package.name == 'linux'
132command:129command:
133 test -e /dev/rtc || ( echo "ERROR: Real Time Clock not found" >&2 && exit 1 )130 test -e /dev/rtc || ( echo "ERROR: Real Time Clock not found" >&2 && exit 1 )
134_description:131_description:
@@ -136,7 +133,6 @@
136133
137plugin: shell134plugin: shell
138name: power-management/tickless_idle135name: power-management/tickless_idle
139requires: package.name == 'linux'
140_description: Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple regression check)136_description: Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple regression check)
141command:137command:
142 zgrep 'CONFIG_NO_HZ=y' /boot/config-`uname -r` >/dev/null 2>&1 || ( echo "WARNING: Tickless Idle is NOT set" >&2 && exit 1 )138 zgrep 'CONFIG_NO_HZ=y' /boot/config-`uname -r` >/dev/null 2>&1 || ( echo "WARNING: Tickless Idle is NOT set" >&2 && exit 1 )
143139
=== modified file 'jobs/stress.txt.in'
--- jobs/stress.txt.in 2012-09-19 16:12:11 +0000
+++ jobs/stress.txt.in 2012-10-09 15:26:23 +0000
@@ -1,7 +1,6 @@
1plugin: shell1plugin: shell
2name: stress/cpu_stress_test2name: stress/cpu_stress_test
3requires:3requires:
4 package.name == 'linux'
5 package.name == 'stress'4 package.name == 'stress'
6user: root5user: root
7command: stress --cpu `cpuinfo_resource | awk '/count:/ {print $2}'` --vm `awk '/MemTotal/ {num_vm = $2/262144; if (num_vm != int(num_vm)) num_vm = int(num_vm) + 1; print num_vm}' /proc/meminfo` --timeout 72006command: stress --cpu `cpuinfo_resource | awk '/count:/ {print $2}'` --vm `awk '/MemTotal/ {num_vm = $2/262144; if (num_vm != int(num_vm)) num_vm = int(num_vm) + 1; print num_vm}' /proc/meminfo` --timeout 7200
87
=== modified file 'jobs/suspend.txt.in'
--- jobs/suspend.txt.in 2012-10-04 07:23:21 +0000
+++ jobs/suspend.txt.in 2012-10-09 15:26:23 +0000
@@ -19,15 +19,11 @@
1919
20plugin: shell20plugin: shell
21name: suspend/cpu_before_suspend21name: suspend/cpu_before_suspend
22requires:
23 package.name == 'linux'
24_description: Verify that all the CPUs are online before suspending22_description: Verify that all the CPUs are online before suspending
25command: cpuinfo_resource > $CHECKBOX_DATA/cpuinfo_before_suspend23command: cpuinfo_resource > $CHECKBOX_DATA/cpuinfo_before_suspend
2624
27plugin: shell25plugin: shell
28name: suspend/memory_before_suspend26name: suspend/memory_before_suspend
29requires:
30 package.name == 'linux'
31_description:27_description:
32 Dumps memory info to a file for comparison after suspend test has been run28 Dumps memory info to a file for comparison after suspend test has been run
33command: meminfo_resource > $CHECKBOX_DATA/meminfo_before_suspend29command: meminfo_resource > $CHECKBOX_DATA/meminfo_before_suspend
@@ -191,24 +187,18 @@
191187
192plugin: shell188plugin: shell
193name: suspend/cpu_after_suspend189name: suspend/cpu_after_suspend
194requires:
195 package.name == 'linux'
196depends: suspend/suspend_advanced suspend/cpu_before_suspend190depends: suspend/suspend_advanced suspend/cpu_before_suspend
197_description: Verify that all CPUs are online after resuming.191_description: Verify that all CPUs are online after resuming.
198command: cpuinfo_resource | diff $CHECKBOX_DATA/cpuinfo_before_suspend -192command: cpuinfo_resource | diff $CHECKBOX_DATA/cpuinfo_before_suspend -
199193
200plugin: shell194plugin: shell
201name: suspend/cpu_after_suspend_auto195name: suspend/cpu_after_suspend_auto
202requires:
203 package.name == 'linux'
204depends: suspend/suspend_advanced_auto suspend/cpu_before_suspend196depends: suspend/suspend_advanced_auto suspend/cpu_before_suspend
205_description: Verify that all CPUs are online after resuming.197_description: Verify that all CPUs are online after resuming.
206command: cpuinfo_resource | diff $CHECKBOX_DATA/cpuinfo_before_suspend -198command: cpuinfo_resource | diff $CHECKBOX_DATA/cpuinfo_before_suspend -
207199
208plugin: shell200plugin: shell
209name: suspend/memory_after_suspend201name: suspend/memory_after_suspend
210requires:
211 package.name == 'linux'
212depends: suspend/suspend_advanced suspend/memory_before_suspend202depends: suspend/suspend_advanced suspend/memory_before_suspend
213_description:203_description:
214 Verify that all memory is available after resuming from suspend.204 Verify that all memory is available after resuming from suspend.
@@ -216,8 +206,6 @@
216206
217plugin: shell207plugin: shell
218name: suspend/memory_after_suspend_auto208name: suspend/memory_after_suspend_auto
219requires:
220 package.name == 'linux'
221depends: suspend/suspend_advanced_auto suspend/memory_before_suspend209depends: suspend/suspend_advanced_auto suspend/memory_before_suspend
222_description:210_description:
223 Verify that all memory is available after resuming from suspend.211 Verify that all memory is available after resuming from suspend.
@@ -225,8 +213,6 @@
225213
226plugin: manual214plugin: manual
227name: suspend/display_after_suspend215name: suspend/display_after_suspend
228requires:
229 package.name == 'linux'
230depends: suspend/suspend_advanced216depends: suspend/suspend_advanced
231_description:217_description:
232 PURPOSE:218 PURPOSE:
233219
=== modified file 'jobs/usb.txt.in'
--- jobs/usb.txt.in 2012-10-01 14:25:12 +0000
+++ jobs/usb.txt.in 2012-10-09 15:26:23 +0000
@@ -1,13 +1,11 @@
1plugin: shell1plugin: shell
2name: usb/detect2name: usb/detect
3requires: package.name == 'linux'
4command: lsusb | sed 's/.*\(ID .*\)/\1/' | head -n 4 || echo "No USB devices were detected" >&23command: lsusb | sed 's/.*\(ID .*\)/\1/' | head -n 4 || echo "No USB devices were detected" >&2
5_description: Detects and shows USB devices attached to this system.4_description: Detects and shows USB devices attached to this system.
65
7plugin: manual6plugin: manual
8name: usb/disk_detect7name: usb/disk_detect
9depends: usb/detect8depends: usb/detect
10requires: package.name == 'linux'
11command: removable_storage_test -l usb9command: removable_storage_test -l usb
12_description:10_description:
13 PURPOSE:11 PURPOSE:
@@ -23,7 +21,6 @@
23plugin: manual21plugin: manual
24name: usb/HID22name: usb/HID
25depends: usb/detect23depends: usb/detect
26requires: package.name == 'linux'
27command: keyboard_test24command: keyboard_test
28_description:25_description:
29 PURPOSE:26 PURPOSE:
@@ -38,7 +35,6 @@
38plugin: manual35plugin: manual
39name: usb/insert36name: usb/insert
40depends: usb/detect37depends: usb/detect
41requires: package.name == 'linux'
42command: removable_storage_watcher insert usb38command: removable_storage_watcher insert usb
43_description:39_description:
44 PURPOSE:40 PURPOSE:
@@ -55,7 +51,6 @@
55plugin: manual51plugin: manual
56name: usb3/insert52name: usb3/insert
57requires:53requires:
58 package.name == 'linux'
59 usb.usb3 == 'supported'54 usb.usb3 == 'supported'
60command: removable_storage_watcher -m 500000000 insert usb55command: removable_storage_watcher -m 500000000 insert usb
61_description:56_description:
@@ -73,7 +68,6 @@
73plugin: manual68plugin: manual
74name: usb/remove69name: usb/remove
75depends: usb/insert70depends: usb/insert
76requires: package.name == 'linux'
77command: removable_storage_watcher remove usb71command: removable_storage_watcher remove usb
78_description:72_description:
79 PURPOSE:73 PURPOSE:
@@ -90,7 +84,6 @@
90name: usb3/remove84name: usb3/remove
91depends: usb3/insert85depends: usb3/insert
92requires:86requires:
93 package.name == 'linux'
94 usb.usb3 == 'supported'87 usb.usb3 == 'supported'
95command: removable_storage_watcher -m 500000000 remove usb88command: removable_storage_watcher -m 500000000 remove usb
96_description:89_description:
@@ -106,7 +99,6 @@
10699
107plugin: manual100plugin: manual
108name: usb/storage-transfer101name: usb/storage-transfer
109requires: package.name == 'linux'
110depends: usb/insert102depends: usb/insert
111command: removable_storage_test usb103command: removable_storage_test usb
112_description:104_description:
@@ -123,7 +115,6 @@
123plugin: manual115plugin: manual
124name: usb3/storage-transfer116name: usb3/storage-transfer
125requires:117requires:
126 package.name == 'linux'
127 usb.usb3 == 'supported'118 usb.usb3 == 'supported'
128depends: usb3/insert119depends: usb3/insert
129command: removable_storage_test -m 500000000 -p 7 usb120command: removable_storage_test -m 500000000 -p 7 usb
@@ -141,7 +132,6 @@
141plugin: shell132plugin: shell
142name: usb/storage-automated133name: usb/storage-automated
143depends: usb/insert134depends: usb/insert
144requires: package.name == 'linux'
145command: removable_storage_test usb135command: removable_storage_test usb
146_description:136_description:
147 This test is automated and executes after the usb/insert test is run.137 This test is automated and executes after the usb/insert test is run.
@@ -149,7 +139,6 @@
149plugin: shell139plugin: shell
150name: usb3/storage-automated140name: usb3/storage-automated
151requires:141requires:
152 package.name == 'linux'
153 usb.usb3 == 'supported'142 usb.usb3 == 'supported'
154depends: usb3/insert143depends: usb3/insert
155command: removable_storage_test -m 500000000 -p 7 usb144command: removable_storage_test -m 500000000 -p 7 usb
@@ -159,7 +148,6 @@
159plugin: shell148plugin: shell
160name: usb/storage-preinserted149name: usb/storage-preinserted
161user: root150user: root
162requires: package.name == 'linux'
163command: removable_storage_test -l usb && removable_storage_test usb151command: removable_storage_test -l usb && removable_storage_test usb
164_description:152_description:
165 This is an automated version of usb/storage-automated and assumes that the153 This is an automated version of usb/storage-automated and assumes that the
@@ -170,7 +158,6 @@
170name: usb3/storage-preinserted158name: usb3/storage-preinserted
171user: root159user: root
172requires:160requires:
173 package.name == 'linux'
174 usb.usb3 == 'supported'161 usb.usb3 == 'supported'
175command: removable_storage_test -l usb && removable_storage_test -m 500000000 -p 7 usb162command: removable_storage_test -l usb && removable_storage_test -m 500000000 -p 7 usb
176_description:163_description:
@@ -180,7 +167,6 @@
180167
181plugin: manual168plugin: manual
182name: usb/panels169name: usb/panels
183requires: package.name == 'linux'
184_description:170_description:
185 PURPOSE:171 PURPOSE:
186 This test will check your USB connection.172 This test will check your USB connection.
@@ -205,7 +191,6 @@
205 requires:191 requires:
206 device.path == "$path"192 device.path == "$path"
207 block_device.`ls /sys$path/block`_state == 'removable' and block_device.`ls /sys$path/block`_usb3 == 'supported'193 block_device.`ls /sys$path/block`_state == 'removable' and block_device.`ls /sys$path/block`_usb3 == 'supported'
208 package.name == 'linux'
209 description: USB3 read performance test for $product194 description: USB3 read performance test for $product
210 user: root195 user: root
211 command: disk_read_performance_test `ls /sys$path/block | sed 's|!|/|'`196 command: disk_read_performance_test `ls /sys$path/block | sed 's|!|/|'`

Subscribers

People subscribed via source and target branches