[compiler-rt] r342092 - [TSan] Update test values

Vlad Tsyrklevich via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 12 15:16:14 PDT 2018


Author: vlad.tsyrklevich
Date: Wed Sep 12 15:16:14 2018
New Revision: 342092

URL: http://llvm.org/viewvc/llvm-project?rev=342092&view=rev
Log:
[TSan] Update test values

Similarly to before, D51985 again reduced the number of registers
required for the read/write routines causing this test to fail on
sanitizer-x86_64-linux-autoconf.

Modified:
    compiler-rt/trunk/lib/tsan/check_analyze.sh

Modified: compiler-rt/trunk/lib/tsan/check_analyze.sh
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/check_analyze.sh?rev=342092&r1=342091&r2=342092&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/check_analyze.sh (original)
+++ compiler-rt/trunk/lib/tsan/check_analyze.sh Wed Sep 12 15:16:14 2018
@@ -36,14 +36,14 @@ check() {
 
 for f in write1 write2 write4 write8 read2 read4 read8; do
   check $f rsp 1
-  check $f push 2
-  check $f pop 12
+  check $f push 1
+  check $f pop 6
 done
 
 for f in read1; do
   check $f rsp 1
-  check $f push 3
-  check $f pop 18
+  check $f push 2
+  check $f pop 12
 done
 
 for f in func_entry func_exit; do




More information about the llvm-commits mailing list