From 2232a68b2df2fe225edfb93be0bbbd2dac2bf118 Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Fri, 15 Oct 2021 00:19:56 -0700 Subject: [PATCH] Fix another test not using the standard separator for sanitizer options. rdar://83637067 --- compiler-rt/test/tsan/flush_memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/test/tsan/flush_memory.cpp b/compiler-rt/test/tsan/flush_memory.cpp index 4ab48fef2191..ee42e38ae382 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;