summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2013-10-16 15:57:23 +0000
committerDmitry Vyukov <dvyukov@google.com>2013-10-16 15:57:23 +0000
commitcdc971c03c8705184b79c0374963c5828f09fdcc (patch)
treece6563350dd808e1facf91bdc248abc0ba22a988
parent464ebbd67b453d5029aea5cb59e053af182369d6 (diff)
downloadbcm5719-llvm-cdc971c03c8705184b79c0374963c5828f09fdcc.tar.gz
bcm5719-llvm-cdc971c03c8705184b79c0374963c5828f09fdcc.zip
tsan: revert variable name change in test
It works as is with new llvm-symbolizer. llvm-svn: 192798
-rw-r--r--compiler-rt/lib/tsan/lit_tests/global_race.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler-rt/lib/tsan/lit_tests/global_race.cc b/compiler-rt/lib/tsan/lit_tests/global_race.cc
index cbe9f147221..ac201615557 100644
--- a/compiler-rt/lib/tsan/lit_tests/global_race.cc
+++ b/compiler-rt/lib/tsan/lit_tests/global_race.cc
@@ -4,7 +4,7 @@
#include <stddef.h>
int GlobalData[10];
-int qwerty;
+int x;
namespace XXX {
struct YYY {
static int ZZZ[10];
@@ -14,19 +14,19 @@ namespace XXX {
void *Thread(void *a) {
GlobalData[2] = 42;
- qwerty = 1;
+ x = 1;
XXX::YYY::ZZZ[0] = 1;
return 0;
}
int main() {
fprintf(stderr, "addr=%p\n", GlobalData);
- fprintf(stderr, "addr2=%p\n", &qwerty);
+ fprintf(stderr, "addr2=%p\n", &x);
fprintf(stderr, "addr3=%p\n", XXX::YYY::ZZZ);
pthread_t t;
pthread_create(&t, 0, Thread, 0);
GlobalData[2] = 43;
- qwerty = 0;
+ x = 0;
XXX::YYY::ZZZ[0] = 0;
pthread_join(t, 0);
}
@@ -37,6 +37,6 @@ int main() {
// CHECK: WARNING: ThreadSanitizer: data race
// CHECK: Location is global 'GlobalData' of size 40 at [[ADDR]] ({{.*}}+0x{{[0-9,a-f]+}})
// CHECK: WARNING: ThreadSanitizer: data race
-// CHECK: Location is global 'qwerty' of size 4 at [[ADDR2]] ({{.*}}+0x{{[0-9,a-f]+}})
+// CHECK: Location is global 'x' of size 4 at [[ADDR2]] ({{.*}}+0x{{[0-9,a-f]+}})
// CHECK: WARNING: ThreadSanitizer: data race
// CHECK: Location is global 'XXX::YYY::ZZZ' of size 40 at [[ADDR3]] ({{.*}}+0x{{[0-9,a-f]+}})
OpenPOWER on IntegriCloud