# Testcase for various embedded-C functions in tcp.stp and netfilter.stp. set test "net-sanity" if {![installtest_p]} {untested $test; return} set file $srcdir/$subdir/net-sanity.stp foreach value {0 0xffffffff 0xffffffffffffffff} { foreach ix {0 1 2 3 4} { set test "net-sanity $value $ix" if {![installtest_p]} {untested $test; continue} # s390x machines don't error when reading address 0 (or when # reading offsets from 0xffffffffffffffff) if {[istarget s390x-*-*]} { if {$value == 0 || ($value == 0xffffffffffffffff && $ix > 0)} { setup_kfail S390X [istarget] } } # The systemtap.stress/tapset_functions.exp covers this scenario too. # The --compatible=2.9 option makes 'private' tapset functions accessible # from user script. spawn stap --compatible=2.9 $file $value $ix set errs 0 verbose -log "exp $test $errs" expect { -timeout 180 -re {(ERROR)[^\r\n]*\r\n} { incr errs; exp_continue } eof { } timeout { fail "$test (timeout)" } } verbose -log "done exp $test $errs" catch {close}; catch {wait} if {$errs == 1} { pass $test } else { fail "$test ($errs)" } verbose -log "done $test $errs" } }