cleanup.sh 162 B

1234567891011121314
  1. #!/bin/sh
  2. if test x$srcdir = x; then
  3. srcdir=.
  4. fi
  5. tmpdir=$top_builddir/tests/tmp/
  6. # remove test-framework
  7. rm -rf $tmpdir
  8. printf "%-40s" "cleaning up"
  9. exit 0