summaryrefslogtreecommitdiff
path: root/tests/cleanup.sh
blob: ec68ed71a08ea69de74ab9190dc604095c166688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

if test x$srcdir = x; then
	srcdir=.
fi

if test x$top_builddir = x; then
	top_builddir=..
fi

tmpdir="$top_builddir/tests/tmp/"

# remove test-framework
rm -rf "$tmpdir"

printf "%-40s" "cleaning up"

exit 0