]> granicus.if.org Git - procps-ng/commitdiff
skip kill test too if running runtest
authorGilles Espinasse <g.esp@free.fr>
Sat, 25 May 2013 21:25:55 +0000 (07:25 +1000)
committerCraig Small <csmall@enc.com.au>
Sat, 25 May 2013 21:25:55 +0000 (07:25 +1000)
I find more readable instead of make check to run
cd testsuite && make site.exp && DEJAGNU=global-conf.exp runtest

But in that case, kill.exp was still trying to run with
ERROR: tcl error sourcing ./kill.test/kill.exp.
ERROR: couldn't execute "/usr/src/procps-ng-3.3.7/kill": no such file or
directory
...

Simply return from test if kill is not build

Signed-off-by: Gilles Espinasse <g.esp@free.fr>
testsuite/kill.test/kill.exp

index 8b0d61b4f403e3ba02d68c3fbc37ad852a537915..bed50a8f1fd6f4f7eaea99a3b93b428d1627ff3f 100644 (file)
@@ -3,6 +3,11 @@
 #
 set kill ${topdir}kill
 
+if { ![ file exists $kill ] } {
+    untested { skipping (not build)}
+    return
+}
+
 set test "kill with no arguments"
 spawn $kill
 expect_pass "$test" "Usage:\\s+\(lt-\)?kill \\\[options\\\] <pid> \\\[...\\\]\\s+Options:\\s+<pid> \\\[...\\\]\\s+send signal to every <pid> listed\\s+-<signal>, -s, --signal <signal>\\s+specify the <signal> to be sent\\s+-l, --list=\\\[<signal>\\\]\\s+list all signal names, or convert one to a name\\\s+-L, --table\\s+list all signal names in a nice table$usage_help$usage_version$usage_man"