f77c43758091d7cf683f08f0250febc8d0def7f0
[lttng-tools.git] / tests / kernel / run-kernel-tests.sh
1 #!/bin/bash
2
3 SESSIOND_BIN="lttng-sessiond"
4 CURDIR=$(dirname $0)
5 TESTDIR=$CURDIR/..
6
7 source $TESTDIR/utils.sh
8
9 tmpdir=`mktemp -d`
10 tests=( $CURDIR/kernel_event_basic $CURDIR/kernel_all_events_basic )
11 exit_code=0
12
13 function start_tests ()
14 {
15 for bin in ${tests[@]};
16 do
17 if [ ! -e $bin ]; then
18 echo -e "$bin not found, passing"
19 continue
20 fi
21
22 start_sessiond
23
24 ./$bin $tmpdir
25 # Test must return 0 to pass.
26 if [ $? -ne 0 ]; then
27 exit_code=1
28 stop_sessiond
29 break
30 fi
31 stop_sessiond
32 done
33
34 # Cleaning up
35 rm -rf $tmpdir
36 }
37
38 function check_lttng_modules ()
39 {
40 local out=`modprobe -l | grep lttng`
41 if [ -z "$out" ]; then
42 echo "LTTng modules not detected. Aborting kernel tests!"
43 echo ""
44 # Exit status 0 so the tests can continue
45 exit 0
46 fi
47 }
48
49 echo -e "\n---------------------"
50 echo -e "Testing Kernel tracer"
51 echo -e "---------------------"
52
53 # Detect lttng-modules installed
54 check_lttng_modules
55
56 start_tests
57
58 exit $exit_code
This page took 0.029578 seconds and 3 git commands to generate.