RetroShare/libretroshare/src/tests/perform_all_auto_tests.sh
csoler 4e586c84ba - added TestUtils class to handle generating random files and random SSL/PGP ids.
- fixed ftcontollertest. This should help fixing ftserver[123]test as well
- improved pqiTestor using templates (lots of identical functions replaced)



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6036 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2012-12-26 19:53:27 +00:00

23 lines
573 B
Bash
Executable File

#!/bin/sh
# This is the main script for performing all tests automatically.
# - in order to add new directories, just list them in the $subdirs variable below
echo "****************************************"
echo "*** RetroShare automatic test suite. ***"
echo "****************************************"
echo "Performing all tests on subdirs."
echo "(Some tests take a few minutes. Be patient) "
echo
echo
subdirs="util serialiser dbase upnp general pgp tcponudp"
for dir in $subdirs; do
echo Tests for directory: $dir
cd $dir
./perform_auto_tests.sh
cd ..
done