From 1c5e2cacefdf6cf5b2dc448fee9d3f68629ccc90 Mon Sep 17 00:00:00 2001 From: Michael Sullivan Date: Mon, 25 Jun 2012 19:28:27 -0700 Subject: [PATCH] Comment out the *right* part of the test failing due to issue #2724. --- src/test/run-pass/binops.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/run-pass/binops.rs b/src/test/run-pass/binops.rs index 7e482478116c..d737de5b09f9 100644 --- a/src/test/run-pass/binops.rs +++ b/src/test/run-pass/binops.rs @@ -152,11 +152,11 @@ fn main() { test_bool(); test_char(); test_box(); - test_port(); + // FIXME: test_port causes valgrind errors (#2724) + //test_port(); test_chan(); test_ptr(); test_fn(); test_native_fn(); - // FIXME: test_class causes valgrind errors (#2724) - //test_class(); + test_class(); }