summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc')
-rw-r--r--compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc b/compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc
index fe886e10bc5..0349a778b1f 100644
--- a/compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc
+++ b/compiler-rt/lib/tsan/tests/unit/tsan_clock_test.cc
@@ -17,7 +17,6 @@
namespace __tsan {
TEST(Clock, VectorBasic) {
- ScopedInRtl in_rtl;
ThreadClock clk;
CHECK_EQ(clk.size(), 0);
clk.tick(0);
@@ -34,7 +33,6 @@ TEST(Clock, VectorBasic) {
}
TEST(Clock, ChunkedBasic) {
- ScopedInRtl in_rtl;
ThreadClock vector;
SyncClock chunked;
CHECK_EQ(vector.size(), 0);
@@ -51,7 +49,6 @@ TEST(Clock, ChunkedBasic) {
}
TEST(Clock, AcquireRelease) {
- ScopedInRtl in_rtl;
ThreadClock vector1;
vector1.tick(100);
SyncClock chunked;
@@ -67,7 +64,6 @@ TEST(Clock, AcquireRelease) {
}
TEST(Clock, ManyThreads) {
- ScopedInRtl in_rtl;
SyncClock chunked;
for (int i = 0; i < 100; i++) {
ThreadClock vector;
@@ -85,7 +81,6 @@ TEST(Clock, ManyThreads) {
}
TEST(Clock, DifferentSizes) {
- ScopedInRtl in_rtl;
{
ThreadClock vector1;
vector1.tick(10);
OpenPOWER on IntegriCloud