functionality-test-suite-20020114
[openafs.git] / src / tests / append1
1 #!/bin/sh
2 $objdir/echo-n hej > foo || exit 1
3 if test `cat foo` != "hej"; then exit 1; fi
4 $objdir/echo-n hopp >> foo || exit 1
5 if test `cat foo` != "hejhopp"; then exit 1; fi
6 rm foo || exit 1