tsan: fix latent race size bug in test
authorDmitry Vyukov <dvyukov@google.com>
Fri, 30 Jul 2021 06:45:16 +0000 (08:45 +0200)
committerDmitry Vyukov <dvyukov@google.com>
Fri, 30 Jul 2021 09:39:26 +0000 (11:39 +0200)
The test contains a race in read/write syscalls.
The size of reported race depends on how the accessed
memory range split into granules inside of tsan runtime.
The test used to report access of size 8, because presumably
the buffer ended up being aligned to 8 bytes. But after
some unrelated changes this test started to report accesses
of size 1 (presumably .data layout changed), which makes
the test fail.
Guarantee alignment of the buf object explicitly.

Reviewed By: vitalybuka, melver

Differential Revision: https://reviews.llvm.org/D107131

compiler-rt/test/tsan/Linux/syscall.cpp

index 34d370c..6b46bda 100644 (file)
@@ -6,7 +6,7 @@
 #include <sys/wait.h>
 
 int pipefd[2];
-char buf[10];
+unsigned long long buf[2];
 
 static void *thr(void *p) {
   barrier_wait(&barrier);