This website requires JavaScript.
Explore
Mirrors
Help
Sign In
Apple-2gs-SW
/
hush
Watch
1
Star
0
Fork
0
You've already forked hush
mirror of
https://github.com/sheumann/hush.git
synced
2024-11-05 06:07:00 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
9611cb1215
hush
/
testsuite
/
cmp
/
cmp-detects-difference
10 lines
101 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Merge test suite.
2001-10-30 23:11:20 +00:00
echo foo >foo
echo bar >bar
Kill off the old 'tests' stuff. Write a ton of new tests for the 'testsuite' dir. Fix a bunch of broken tests. Fix the testsuite 'runtest' script so it actually reports all failures and provides meaningful feedback. -Erik
2004-04-06 11:10:30 +00:00
set +e
busybox cmp -s foo bar
if [ $? != 0 ] ; then
exit 0;
fi
exit 1;
Reference in New Issue
Copy Permalink