diff options
author | Po-Hsu Lin <po-hsu.lin@canonical.com> | 2015-04-28 14:43:55 +0800 |
---|---|---|
committer | Po-Hsu Lin <po-hsu.lin@canonical.com> | 2015-04-28 14:43:55 +0800 |
commit | 8a554ec96cb349f15c5b614da70e054bec622dea (patch) | |
tree | 11692f499e6dff1fbaaf4de286f33813efd6cc27 /jobs | |
parent | 949f0e4966297a061af6bcfef31b254ee63d1bdd (diff) |
provider:checkbox: fix I/O redirections for compiz and unity check tests
This patch fixes the I/O redirection bug, change from 2&>1 to 2>&1
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 |