2013-02-06 18:51:01 +10:30
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Aggregation of all tests except high-load stress tests.
|
|
|
|
#
|
2014-06-27 17:29:57 +09:30
|
|
|
# Copyright 2012-2014 Serval Project Inc.
|
2013-02-06 18:51:01 +10:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
source "${0%/*}/../testframework.sh"
|
2014-06-19 11:38:39 +09:30
|
|
|
source "${0%/*}/../testconfig.sh"
|
2013-02-06 18:51:01 +10:30
|
|
|
|
2013-04-05 16:23:20 +10:30
|
|
|
includeTests logging
|
2013-02-06 18:51:01 +10:30
|
|
|
includeTests config
|
2013-02-11 18:43:12 +10:30
|
|
|
includeTests keyring
|
2013-02-06 18:51:01 +10:30
|
|
|
includeTests server
|
|
|
|
includeTests routing
|
2014-04-29 15:31:50 +09:30
|
|
|
includeTests mdp
|
2013-12-18 14:37:46 +10:30
|
|
|
includeTests msp
|
2013-02-06 18:51:01 +10:30
|
|
|
includeTests dnahelper
|
|
|
|
includeTests dnaprotocol
|
|
|
|
includeTests rhizomeops
|
|
|
|
includeTests rhizomeprotocol
|
2013-08-01 11:37:35 +09:30
|
|
|
includeTests meshms
|
2016-08-16 15:04:15 +09:30
|
|
|
includeTests meshmb
|
2013-02-06 18:51:01 +10:30
|
|
|
includeTests directory_service
|
2014-02-03 15:51:48 +10:30
|
|
|
includeTests vomp
|
2014-10-31 13:43:23 +10:30
|
|
|
includeTests keyringrestful
|
2015-08-31 19:12:43 +09:30
|
|
|
includeTests rhizomerestful
|
2014-10-31 13:43:23 +10:30
|
|
|
includeTests meshmsrestful
|
2016-10-10 13:34:18 +10:30
|
|
|
includeTests meshmbrestful
|
2014-06-19 11:38:39 +09:30
|
|
|
if type -p "$JAVAC" >/dev/null; then
|
|
|
|
includeTests jni
|
2015-08-31 19:12:43 +09:30
|
|
|
includeTests keyringjava
|
2014-06-27 17:29:57 +09:30
|
|
|
includeTests rhizomejava
|
2014-06-19 11:38:39 +09:30
|
|
|
includeTests meshmsjava
|
|
|
|
fi
|
2013-02-06 18:51:01 +10:30
|
|
|
|
|
|
|
runTests "$@"
|