diff options
| author | Graydon Hoare <[email protected]> | 2011-01-28 13:12:31 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-28 13:12:31 -0800 |
| commit | 65f0f8e64d9dd5310a6f4692fb6e223df5861689 (patch) | |
| tree | 0f7e4a8532d7a85275f9823ebe7457810dd8fbe2 /src | |
| parent | Teach rustc to fail (diff) | |
| download | rust-65f0f8e64d9dd5310a6f4692fb6e223df5861689.tar.xz rust-65f0f8e64d9dd5310a6f4692fb6e223df5861689.zip | |
Pass --error-exitcode=1 to valgrind in Makefile; XFAIL test that was memcheck-failing.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index adaddddc..968f9d6c 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 \ |