aboutsummaryrefslogtreecommitdiff
path: root/testsuite/cmp
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-30 23:11:20 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-30 23:11:20 +0000
commit6fd181afd97102bb355120d6a384a9fd5de932c8 (patch)
treee258582c0f14f06750e480e2c244260e79860fd0 /testsuite/cmp
parent99f25757d3ddfdbe764f04ee037b19b748b7caec (diff)
downloadbusybox-w32-6fd181afd97102bb355120d6a384a9fd5de932c8.tar.gz
busybox-w32-6fd181afd97102bb355120d6a384a9fd5de932c8.tar.bz2
busybox-w32-6fd181afd97102bb355120d6a384a9fd5de932c8.zip
Merge test suite.
git-svn-id: svn://busybox.net/trunk/busybox@3603 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'testsuite/cmp')
-rw-r--r--testsuite/cmp/cmp-detects-difference7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/cmp/cmp-detects-difference b/testsuite/cmp/cmp-detects-difference
new file mode 100644
index 000000000..b5544f9a8
--- /dev/null
+++ b/testsuite/cmp/cmp-detects-difference
@@ -0,0 +1,7 @@
1echo foo >foo
2echo bar >bar
3if busybox cmp -s foo bar; then
4 return 1
5else
6 return 0
7fi