blob: 2d6471033e1b777edcff4d4d4d1c54db7f53b05d [file] [log] [blame]
Eric Andersen65ddf772003-01-13 23:19:31 +00001rm -f foo bar
2strings -af ../../busybox > foo
3busybox strings -af ../../busybox > bar
Eric Andersen650fe632004-04-06 11:10:30 +00004set +e
Eric Andersen65ddf772003-01-13 23:19:31 +00005test ! -f foo -a -f bar
6if [ $? = 0 ] ; then
Eric Andersen650fe632004-04-06 11:10:30 +00007 set -e
8 diff -q foo bar
9fi