summaryrefslogtreecommitdiff
path: root/test/tsan
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-08-25 15:18:48 +0000
committerDmitry Vyukov <dvyukov@google.com>2017-08-25 15:18:48 +0000
commit809c05a0ca406262e02bf5ec2dd78ae1f44009da (patch)
tree593820ac07b26a91f29553abb73f2bc9984643ca /test/tsan
parent3d2a81a38bdbbb3624da9c1fef76c9cbfd43c199 (diff)
tsan: fix darwin build
Runtime hooks do not seem to work on darwin. The test failed on builder: http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_check/34882/consoleFull#7286766538254eaf0-7326-4999-85b0-388101f2d404 Move the test to Linux dir. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@311776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/tsan')
-rw-r--r--test/tsan/Linux/double_race.cc (renamed from test/tsan/double_race.cc)2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tsan/double_race.cc b/test/tsan/Linux/double_race.cc
index 76b017428..2b4af35a2 100644
--- a/test/tsan/double_race.cc
+++ b/test/tsan/Linux/double_race.cc
@@ -1,5 +1,5 @@
// RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t 2>&1 | FileCheck %s
-#include "test.h"
+#include "../test.h"
#include <memory.h>
// A reproducer for a known issue.