[compiler-rt] c5c316f - [dfsan] Do not test origin-tracking in atomic.cpp

Jianzhou Zhao via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 26 11:49:31 PST 2021


Author: Jianzhou Zhao
Date: 2021-02-26T19:44:18Z
New Revision: c5c316f6d9eeecae6de538ff554ae8066ebecb91

URL: https://github.com/llvm/llvm-project/commit/c5c316f6d9eeecae6de538ff554ae8066ebecb91
DIFF: https://github.com/llvm/llvm-project/commit/c5c316f6d9eeecae6de538ff554ae8066ebecb91.diff

LOG: [dfsan] Do not test origin-tracking in atomic.cpp

This would cause linking errors after https://reviews.llvm.org/D97483
that introduced new prefixes for ABI wrappers with origin tracking mode.
We will renable this after the full origin tracking is checked in.

Added: 
    

Modified: 
    compiler-rt/test/dfsan/atomic.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/dfsan/atomic.cpp b/compiler-rt/test/dfsan/atomic.cpp
index 252f8397897f..7d4dc04cb536 100644
--- a/compiler-rt/test/dfsan/atomic.cpp
+++ b/compiler-rt/test/dfsan/atomic.cpp
@@ -1,5 +1,4 @@
-// RUN: %clangxx_dfsan %s -fno-exceptions -o %t && %run %t
-// RUN: %clangxx_dfsan -mllvm -dfsan-track-origins=1 -mllvm -dfsan-fast-16-labels=true %s -fno-exceptions -o %t && %run %t
+// RUN: %clangxx_dfsan -mllvm -dfsan-fast-16-labels=true %s -fno-exceptions -o %t && %run %t
 //
 // Use -fno-exceptions to turn off exceptions to avoid instrumenting
 // __cxa_begin_catch, std::terminate and __gxx_personality_v0.


        


More information about the llvm-commits mailing list