added system tests

This commit is contained in:
Andreas Gustafsson
2000-05-15 22:53:15 +00:00
parent 43383a70d3
commit 0e9dcd5480
35 changed files with 814 additions and 0 deletions

16
bin/tests/system/clean.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
#
# Clean up after system tests.
#
. ./conf.sh
find . -type f \( \
-name 'K*' -o -name '*~' -o -name '*.core' -o -name '*.log' \
-o -name '*.pid' -o -name '*.run' -o -name '*.keyset' \
\) -print | xargs rm
for d in $SUBDIRS
do
test ! -f $d/clean.sh || ( cd $d && sh clean.sh )
done