diff options
Diffstat (limited to 'jobs')
-rw-r--r-- | jobs/graphics-legacy.txt.in | 2 | ||||
-rw-r--r-- | jobs/graphics.txt.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/jobs/graphics-legacy.txt.in b/jobs/graphics-legacy.txt.in index 07f25f0..851e481 100644 --- a/jobs/graphics-legacy.txt.in +++ b/jobs/graphics-legacy.txt.in @@ -152,7 +152,7 @@ _description: Check that hardware is able to run compiz plugin: shell id: graphics/unity-support requires: package.name == 'nux-tools' -command: ! /usr/lib/nux/unity_support_test -p 2&>1 | ansi_parser | grep -e ":\(\s\+\)no$" -ie "error" +command: ! /usr/lib/nux/unity_support_test -p 2>&1 | ansi_parser | grep -e ":\(\s\+\)no$" -ie "error" estimated_duration: 0.131 _description: Check that hardware is able to run Unity 3D _summary: Test Unity 3D support diff --git a/jobs/graphics.txt.in b/jobs/graphics.txt.in index c8b4b17..1a354d0 100644 --- a/jobs/graphics.txt.in +++ b/jobs/graphics.txt.in @@ -307,7 +307,7 @@ command: plugin: shell id: graphics/`echo ${index}`_compiz_check_`echo "${product}" | sed 's/ /_/g;s/[^_a-zA-Z0-9-]//g'` requires: package.name == 'nux-tools' - command: ! /usr/lib/nux/unity_support_test -c -p 2&>1 | ansi_parser | grep -e ":\(\s\+\)no$" -ie "error" + command: ! /usr/lib/nux/unity_support_test -c -p 2>&1 | ansi_parser | grep -e ":\(\s\+\)no$" -ie "error" estimated_duration: 0.130 _description: Check that $product hardware is able to run compiz _summary: Test Compiz support for $product @@ -323,7 +323,7 @@ command: plugin: shell id: graphics/`echo ${index}`_unity_support_`echo "${product}" | sed 's/ /_/g;s/[^_a-zA-Z0-9-]//g'` requires: package.name == 'nux-tools' - command: ! /usr/lib/nux/unity_support_test -p 2&>1 | ansi_parser | grep -e ":\(\s\+\)no$" -ie "error" + command: ! /usr/lib/nux/unity_support_test -p 2>&1 | ansi_parser | grep -e ":\(\s\+\)no$" -ie "error" estimated_duration: 0.131 _description: Check that $product hardware is able to run Unity 3D _summary: Test Unity 3D support for $product |