diff options
author | Matt Morehouse <mascasa@google.com> | 2019-05-16 04:00:41 +0000 |
---|---|---|
committer | Matt Morehouse <mascasa@google.com> | 2019-05-16 04:00:41 +0000 |
commit | f2669eebd554c71fdb8fa609506c61fc3644224c (patch) | |
tree | 23d170c5ce1eecf253f69851339d01603f60948a | |
parent | 54ee6df2477842ff61b00adb262ef7e8bd057ef0 (diff) | |
download | bcm5719-llvm-f2669eebd554c71fdb8fa609506c61fc3644224c.tar.gz bcm5719-llvm-f2669eebd554c71fdb8fa609506c61fc3644224c.zip |
[libFuzzer] Increase merge-sigusr sleep after sending signal.
Test is flaky on buildbot at least partially due to the fuzz target not
exiting before we read its output.
llvm-svn: 360848
-rw-r--r-- | compiler-rt/test/fuzzer/merge-sigusr.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/fuzzer/merge-sigusr.test b/compiler-rt/test/fuzzer/merge-sigusr.test index 69532f13208..89c523d4fa2 100644 --- a/compiler-rt/test/fuzzer/merge-sigusr.test +++ b/compiler-rt/test/fuzzer/merge-sigusr.test @@ -19,7 +19,7 @@ RUN: %run %t/LFSIGUSR -merge=1 -merge_control_file=%t/MCF %t/C1 %t/C2 2>%t/log & RUN: sleep 3 RUN: pkill -SIGUSR2 -P $PID RUN: kill -SIGUSR2 $PID -RUN: sleep 3 +RUN: sleep 6 RUN: cat %t/log | FileCheck %s RUN: grep C2/g %t/MCF RUN: grep STARTED %t/MCF |