[TSan] Update test values
authorVlad Tsyrklevich <vlad@tsyrklevich.net>
Wed, 12 Sep 2018 22:16:14 +0000 (22:16 +0000)
committerVlad Tsyrklevich <vlad@tsyrklevich.net>
Wed, 12 Sep 2018 22:16:14 +0000 (22:16 +0000)
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.

llvm-svn: 342092

compiler-rt/lib/tsan/check_analyze.sh

index b302ef7..b2beb85 100755 (executable)
@@ -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