summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2017-11-09 22:01:06 +0000
committerKostya Serebryany <kcc@google.com>2017-11-09 22:01:06 +0000
commit751fd236f8ae2dd3c177eee3b15f19d1786a194e (patch)
tree88cddf8e0338b657edf6e171e8011b1d85b87dc6
parent60f3e3f7561a46a7fb5460d8658edd37aa2655c8 (diff)
[libFuzzer] use pkill instead of killall in a test since the bots don't have killall
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@317840 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/fuzzer/sigusr.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzzer/sigusr.test b/test/fuzzer/sigusr.test
index 0c1ec4dc7..f1a15a4c3 100644
--- a/test/fuzzer/sigusr.test
+++ b/test/fuzzer/sigusr.test
@@ -19,7 +19,7 @@ RUN: echo g > %t/C2/g
RUN: %t/LFSIGUSR -merge=1 -merge_control_file=%t/MCF %t/C1 %t/C2 2> %t/log & export PID=$!
RUN: sleep 3
-RUN: killall -SIGUSR2 %t/LFSIGUSR
+RUN: pkill -f -SIGUSR2 %t/LFSIGUSR
RUN: cat %t/log | FileCheck %s
RUN: grep C2/g %t/MCF
RUN: grep STARTED %t/MCF