Skip to content

Commit e51fc36

Browse files
authored
[lsan][test] Allow testcase to execute on remote targets without not utility (#87350)
1 parent aa91d90 commit e51fc36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler-rt/test/lsan/TestCases/create_thread_leak.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Test handling of arg and retval of child thread.
22

33
// RUN: %clangxx_lsan -pthread %s -o %t
4-
// RUN: %run not %t 10 1 0 0 2>&1 | FileCheck %s --check-prefixes=LEAK,LEAK123
5-
// RUN: %run not %t 10 0 1 0 2>&1 | FileCheck %s --check-prefixes=LEAK,LEAK234
6-
// RUN: %run not %t 10 0 0 1 2>&1 | FileCheck %s --check-prefixes=LEAK,LEAK234
4+
// RUN: not %run %t 10 1 0 0 2>&1 | FileCheck %s --check-prefixes=LEAK,LEAK123
5+
// RUN: not %run %t 10 0 1 0 2>&1 | FileCheck %s --check-prefixes=LEAK,LEAK234
6+
// RUN: not %run %t 10 0 0 1 2>&1 | FileCheck %s --check-prefixes=LEAK,LEAK234
77
// RUN: %run %t 10 0 0 0
88

99
// This test appears to be flaky on x86_64-darwin buildbots.

0 commit comments

Comments
 (0)