summaryrefslogtreecommitdiffstats
path: root/compiler-rt
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2013-11-27 10:05:22 +0000
committerDmitry Vyukov <dvyukov@google.com>2013-11-27 10:05:22 +0000
commit89117e1fcc79c73722877a6ecb13f0ada79a05c7 (patch)
tree1398f52d48f9c31422ddbe9e4d908a811b7de7df /compiler-rt
parent51b35901fdea8aebfcdf129a6a6aab8caf8af05e (diff)
downloadbcm5719-llvm-89117e1fcc79c73722877a6ecb13f0ada79a05c7.tar.gz
bcm5719-llvm-89117e1fcc79c73722877a6ecb13f0ada79a05c7.zip
tsan: do not leave verbosity>0 in tests
llvm-svn: 195833
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/lib/tsan/tests/unit/tsan_flags_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/tsan/tests/unit/tsan_flags_test.cc b/compiler-rt/lib/tsan/tests/unit/tsan_flags_test.cc
index 388e0148b3b..ef222243156 100644
--- a/compiler-rt/lib/tsan/tests/unit/tsan_flags_test.cc
+++ b/compiler-rt/lib/tsan/tests/unit/tsan_flags_test.cc
@@ -111,7 +111,7 @@ static const char *options2 =
" handle_ioctl=true"
" malloc_context_size=567"
" log_path=eeeeeee"
- " verbosity=3"
+ " verbosity=0"
" detect_leaks=true"
" leak_check_at_exit=true"
" allocator_may_return_null=true"
@@ -193,7 +193,7 @@ void VerifyOptions2(Flags *f) {
EXPECT_EQ(f->handle_ioctl, true);
EXPECT_EQ(f->malloc_context_size, 567);
EXPECT_EQ(f->log_path, std::string("eeeeeee"));
- EXPECT_EQ(f->verbosity, 3);
+ EXPECT_EQ(f->verbosity, 0);
EXPECT_EQ(f->detect_leaks, true);
EXPECT_EQ(f->leak_check_at_exit, true);
EXPECT_EQ(f->allocator_may_return_null, true);
OpenPOWER on IntegriCloud