mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-29 00:37:10 -05:00
4e586c84ba
- 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
23 lines
573 B
Bash
Executable File
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
|
|
|