[Intel-gfx] [PATCH] tests/drv_suspend: Replace "&> /dev/null" with "> /dev/null 2>&1"

oscar.mateo at intel.com oscar.mateo at intel.com
Mon Nov 11 16:36:55 CET 2013


From: Oscar Mateo <oscar.mateo at intel.com>

Some shells do not understand "&>". For instance, my Ubuntu 12.04
machine has /bin/sh pointing to dash, which makes a mess out of
"&>" (to the point that the helper processes cannot be killed).

Signed-off-by: Oscar Mateo <oscar.mateo at intel.com>
---
 tests/drv_suspend.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/drv_suspend.c b/tests/drv_suspend.c
index e526e2a..9b3df2b 100644
--- a/tests/drv_suspend.c
+++ b/tests/drv_suspend.c
@@ -106,7 +106,7 @@ test_debugfs_reader(void)
 		static char tmp[1024];
 
 		snprintf(tmp, sizeof(tmp) - 1,
-			 "while true; do find %s/%i/ -type f | xargs cat &> /dev/null; done",
+			 "while true; do find %s/%i/ -type f | xargs cat > /dev/null 2>&1; done",
 			 dfs_base, drm_get_card());
 		assert(execl("/bin/sh", "sh", "-c", tmp, (char *) NULL) != -1);
 	}
@@ -131,7 +131,7 @@ test_sysfs_reader(void)
 		static char tmp[1024];
 
 		snprintf(tmp, sizeof(tmp) - 1,
-			 "while true; do find %s%i*/ -type f | xargs cat &> /dev/null; done",
+			 "while true; do find %s%i*/ -type f | xargs cat > /dev/null 2>&1; done",
 			 dfs_base, drm_get_card());
 		assert(execl("/bin/sh", "sh", "-c", tmp, (char *) NULL) != -1);
 	}
-- 
1.7.9.5




More information about the Intel-gfx mailing list