aboutsummaryrefslogtreecommitdiff
path: root/testsuite/xargs/xargs-works
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/xargs/xargs-works')
-rw-r--r--testsuite/xargs/xargs-works6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/xargs/xargs-works b/testsuite/xargs/xargs-works
index c95869e89..a4bba7630 100644
--- a/testsuite/xargs/xargs-works
+++ b/testsuite/xargs/xargs-works
@@ -1,4 +1,6 @@
1# FEATURE: CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM
2
1[ -n "$d" ] || d=.. 3[ -n "$d" ] || d=..
2find "$d" -name \*works -type f | xargs md5sum > logfile.gnu 4find "$d" -name \*works -type f -print0 | xargs -0 md5sum > logfile.gnu
3find "$d" -name \*works -type f | busybox xargs md5sum > logfile.bb 5find "$d" -name \*works -type f -print0 | busybox xargs -0 md5sum > logfile.bb
4diff -u logfile.gnu logfile.bb 6diff -u logfile.gnu logfile.bb