about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-07-13 19:50:14 +0000
committerEric Wong <normalperson@yhbt.net>2013-07-13 19:51:51 +0000
commitb773c55485a7a50904493a0cdc8dd22da9bbfdee (patch)
tree7f775b2a7289f4ea8ddd7cf4ae594943da127290
parentf3ff911f3cfeb6af3e32513c4301be389a936d76 (diff)
downloadcmogstored-b773c55485a7a50904493a0cdc8dd22da9bbfdee.tar.gz
This test is too slow and timing-sensitive under valgrind, so
disable it for now until we have a better solution.
-rw-r--r--test/pwrite_wrap.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/pwrite_wrap.rb b/test/pwrite_wrap.rb
index 34d342a..d3cde3e 100644
--- a/test/pwrite_wrap.rb
+++ b/test/pwrite_wrap.rb
@@ -133,4 +133,7 @@ class TestPwriteWrap < Test::Unit::TestCase
     $stderr.write(@err.read) if $DEBUG
     assert status.success?, status.inspect
   end
-end if File.exist?(TEST_PROG)
+
+# this test is horribly slow under valgrind, and we probably don't need
+# valgrind, here...
+end if File.exist?(TEST_PROG) && ! ENV["VALGRIND"]