From 6eb4726e6f08066852d032884882d7a97420018e Mon Sep 17 00:00:00 2001 From: Craig Small Date: Sun, 3 Jan 2016 18:20:45 +1100 Subject: [PATCH] testsuite: kill test fails on signal names Some archs have + and - in their signal names, such as hppa which comes with signals such as RTMIN+-9 RTMIN+-8 The kill -l test failed because of this, we now accept these odd names. References: https://bugs.debian.org/762764 https://buildd.debian.org/status/fetch.php?pkg=procps&arch=hppa&ver=1%3A3.3.10-1&stamp=1411601407 --- testsuite/kill.test/kill.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/kill.test/kill.exp b/testsuite/kill.test/kill.exp index bed50a8f..1668ac4f 100644 --- a/testsuite/kill.test/kill.exp +++ b/testsuite/kill.test/kill.exp @@ -14,11 +14,11 @@ expect_pass "$test" "Usage:\\s+\(lt-\)?kill \\\[options\\\] \\\[...\\\]\\s set test "kill list signal names" spawn $kill -l -expect_pass "$test" "^\(\[A-Z12\]\\s*\)+$" +expect_pass "$test" "^\(\[A-Z12+-\]\\s*\)+$" set test "kill list signal names in table" spawn $kill -L -expect_pass "$test" "^\(\\s+\\d+ \[A-Z12\]+\)+\\s*$" +expect_pass "$test" "^\(\\s+\\d+ \[A-Z12+-\]+\)+\\s*$" set test "kill convert signal name to number" spawn $kill -lHUP -- 2.40.0