*** empty log message ***
[arla.git] / tests / append1
blobc7dc373571b4c533c49445f9a389af9f4591a051
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