Changes for kernel and Busybox
[tomato.git] / release / src / router / busybox / testsuite / cmp / cmp-detects-difference
blobb9bb628f109291edca4fe1e7e39803521f027542
1 echo foo >foo
2 echo bar >bar
3 set +e
4 busybox cmp -s foo bar
5 if [ $? != 0 ] ; then
6         exit 0;
7 fi
9 exit 1;