X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Frunall.sh;fp=tests%2Frunall.sh;h=a1db92d70317ae2f53895a0e03069ce546f20041;hp=0000000000000000000000000000000000000000;hb=6e0ca3c2c2afedf4a944cec63a6a566f7014c93f;hpb=ab118b20ff2792be71690fdbf265ad6c691a2825 diff --git a/tests/runall.sh b/tests/runall.sh new file mode 100755 index 000000000..a1db92d70 --- /dev/null +++ b/tests/runall.sh @@ -0,0 +1,55 @@ +#!/bin/bash +# +# Copyright (C) 2011 - David Goulet +# +# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# + +TEST_DIR=$(dirname $0) + +failed=0 +num_test=1 + +function run() { + printf "%d) Running test $@\n" $num_test + echo "==================================" + + # Running test + ./$@ + if [ $? -ne 0 ]; then + let failed=$failed+1 + printf "\nTest $@ FAILED\n\n" + else + printf "\nTest $@ PASSED\n\n" + fi + + let num_test=$num_test+1 +} + +#### ADD TESTS HERE #### + +run ltt-sessiond/run.sh + +#### END TESTS HERE #### + +echo "--------------------------" +if [ $failed -eq 0 ]; then + echo "All passed!" +else + echo "$failed tests failed" +fi +echo "--------------------------" + +exit 0