cleanup.sh 220 B

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