Index: compiler-rt/test/lsan/TestCases/disabler.c =================================================================== --- compiler-rt/test/lsan/TestCases/disabler.c +++ compiler-rt/test/lsan/TestCases/disabler.c @@ -1,6 +1,6 @@ // Test for __lsan_disable() / __lsan_enable(). // RUN: %clang_lsan %s -o %t -// RUN: %env_lsan_opts=report_objects=1:use_registers=0:use_stacks=0:use_tls=0 not %run %t 2>&1 | FileCheck %s +// RUN: %env_lsan_opts=report_objects=1:use_registers=0:use_stacks=0 not %run %t 2>&1 | FileCheck %s // Investigate why it does not fail with use_tls=0 // UNSUPPORTED: arm-linux || armhf-linux Index: compiler-rt/test/lsan/TestCases/disabler.cpp =================================================================== --- compiler-rt/test/lsan/TestCases/disabler.cpp +++ compiler-rt/test/lsan/TestCases/disabler.cpp @@ -1,6 +1,6 @@ // Test for ScopedDisabler. // RUN: %clangxx_lsan %s -o %t -// RUN: %env_lsan_opts=report_objects=1:use_registers=0:use_stacks=0:use_tls=0 not %run %t 2>&1 | FileCheck %s +// RUN: %env_lsan_opts=report_objects=1:use_registers=0:use_stacks=0 not %run %t 2>&1 | FileCheck %s #include #include Index: compiler-rt/test/lsan/TestCases/ignore_object.c =================================================================== --- compiler-rt/test/lsan/TestCases/ignore_object.c +++ compiler-rt/test/lsan/TestCases/ignore_object.c @@ -1,6 +1,6 @@ // Test for __lsan_ignore_object(). // RUN: %clang_lsan %s -o %t -// RUN: %env_lsan_opts=report_objects=1:use_registers=0:use_stacks=0:use_tls=0 not %run %t 2>&1 | FileCheck %s +// RUN: %env_lsan_opts=report_objects=1:use_registers=0:use_stacks=0 not %run %t 2>&1 | FileCheck %s // Investigate why it does not fail with use_stack=0 // UNSUPPORTED: arm-linux || armhf-linux