blob: edcea130287e76d89f1a8f3c4f71a7289b95c337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
set self unprivilegedko
foreach file [lsort [glob -nocomplain $srcdir/systemtap.unprivileged/$self/*.stp]] {
set test $self/[file tail $file]
verbose -log "Running $file"
set rc [stap_run_batch $file]
if {$rc < 0} {
# crashed
fail $test
} else {
setup_xfail *-*-*
if {$rc == 0} { pass $test } else { fail $test }
}
}
|