summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/drv_suspend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/drv_suspend.c b/tests/drv_suspend.c
index e526e2a2..9b3df2be 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);
}