diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2011-01-28 13:12:31 -0800 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2011-01-28 13:12:31 -0800 |
| commit | 65f0f8e64d9dd5310a6f4692fb6e223df5861689 (patch) | |
| tree | 0f7e4a8532d7a85275f9823ebe7457810dd8fbe2 | |
| parent | 6b7cab3602eae7893a4efcee760600ab69d75173 (diff) | |
| download | rust-65f0f8e64d9dd5310a6f4692fb6e223df5861689.tar.gz rust-65f0f8e64d9dd5310a6f4692fb6e223df5861689.zip | |
Pass --error-exitcode=1 to valgrind in Makefile; XFAIL test that was memcheck-failing.
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index adaddddc84d..968f9d6c9a0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -46,6 +46,7 @@ ifeq ($(CFG_OSTYPE), Linux) CFG_VALGRIND := $(shell which valgrind) ifdef CFG_VALGRIND CFG_VALGRIND += --leak-check=full \ + --error-exitcode=1 \ --quiet --vex-iropt-level=0 \ --suppressions=etc/x86.supp endif @@ -445,7 +446,6 @@ TEST_XFAILS_RUSTC := $(filter-out \ deref.rs \ div-mod.rs \ drop-bind-thunk-args.rs \ - drop-on-empty-block-exit.rs \ drop-on-ret.rs \ fact.rs \ fn-lval.rs \ |
