[compiler-rt] 2232a68 - Fix another test not using the standard separator for sanitizer options.
Dan Liew via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 15 00:21:45 PDT 2021
Author: Dan Liew
Date: 2021-10-15T00:20:34-07:00
New Revision: 2232a68b2df2fe225edfb93be0bbbd2dac2bf118
URL: https://github.com/llvm/llvm-project/commit/2232a68b2df2fe225edfb93be0bbbd2dac2bf118
DIFF: https://github.com/llvm/llvm-project/commit/2232a68b2df2fe225edfb93be0bbbd2dac2bf118.diff
LOG: Fix another test not using the standard separator for sanitizer options.
rdar://83637067
Added:
Modified:
compiler-rt/test/tsan/flush_memory.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/tsan/flush_memory.cpp b/compiler-rt/test/tsan/flush_memory.cpp
index 4ab48fef21915..ee42e38ae382a 100644
--- a/compiler-rt/test/tsan/flush_memory.cpp
+++ b/compiler-rt/test/tsan/flush_memory.cpp
@@ -1,5 +1,5 @@
// RUN: %clangxx_tsan -O1 %s -o %t
-// RUN: %env_tsan_opts="flush_memory_ms=1 flush_symbolizer_ms=1 memory_limit_mb=1" %deflake %run %t | FileCheck %s
+// RUN: %env_tsan_opts=flush_memory_ms=1:flush_symbolizer_ms=1:memory_limit_mb=1 %deflake %run %t | FileCheck %s
#include "test.h"
long X, Y;
More information about the llvm-commits
mailing list