projects
/
lttng-tools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Tests: Convert the kernel_event_basic test to an equivalent shell test
[lttng-tools.git]
/
tests
/
regression
/
kernel
/
runall.sh
1
#!/bin/bash
2
3
DIR
=
$
(
dirname
$0
)
4
5
tests
=(
$DIR
/
run-kernel-tests.sh
)
6
exit_code
=
0
7
8
function
start_tests
()
9
{
10
for
bin
in
${tests[@]}
;
11
do
12
.
/
$bin
13
# Test must return 0 to pass.
14
if
[
$?
-ne
0
];
then
15
exit_code
=
1
16
break
17
fi
18
done
19
}
20
21
start_tests
22
23
exit
$exit_code
This page took
0.030173 seconds
and
5
git commands to generate.