tazpkg view tests/testsuite @ rev 937

modules/get: make wget progress metter working again
Now, Busybox v. 1.26 make the difference whether it outputs progress meter to the file or to the tty (libbb/progress.c).
Bug report: http://forum.slitaz.org/topic/two-issues-with-tazpkg-934
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jan 27 12:13:57 2017 +0200 (2017-01-27)
parents
children
line source
1 #!/bin/sh
2 #
3 . /lib/libtaz.sh
4 check_root
6 for test in $(find . -name 'test[0-9]*' | sort); do
7 $test
8 done
10 footer "$(colorize 32 'All tests passed')"
11 rm -rf /tmp/test
12 exit 0