tazpkg annotate tests/testsuite @ rev 931

Add module/bb: manage Busybox applets.
Remove function definitions that are now in the /lib/libtaz.sh (die, im).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jan 08 11:24:12 2017 +0200 (2017-01-08)
parents
children
rev   line source
al@884 1 #!/bin/sh
al@884 2 #
al@884 3 . /lib/libtaz.sh
al@884 4 check_root
al@884 5
al@884 6 for test in $(find . -name 'test[0-9]*' | sort); do
al@884 7 $test
al@884 8 done
al@884 9
al@884 10 footer "$(colorize 32 'All tests passed')"
al@884 11 rm -rf /tmp/test
al@884 12 exit 0