Skip to content

Commit ca7a20d

Browse files
committed
[lldb] Reduce chances of spurious failures in some build setups
The test may fail when running from a directory that contains the string used in CHECK-NOT. We observe flakiness rate of around 3/100000. Increasing the length helps reducing the rate of failures. Reviewed By: DavidSpickett Differential Revision: https://reviews.llvm.org/D148099
1 parent 93a735a commit ca7a20d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# RUN: %clang_host -g %S/Inputs/main.c -o %t
22
# RUN: %lldb -b -o 'target stop-hook add --name test --shlib test -o "expression 95000 + 126"' -o 'file %t' -o 'b main' -o 'r' 2>&1 | FileCheck %s
33
# CHECK: Stop hook #1 added
4-
# CHECK-NOT: 95126
4+
# CHECK-NOT: (lldb) expression 95000 + 126
5+
# CHECK-NOT: (int) $0 = 95126

0 commit comments

Comments
 (0)