diff options
| author | Brian Anderson <[email protected]> | 2010-12-29 01:04:43 -0500 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-01-03 10:43:44 -0800 |
| commit | 2ec4325fe9fe5808d7abab544e3a9ce896093f51 (patch) | |
| tree | 15cf386a356c1735bce3e6300e4cd7333490c275 /src | |
| parent | Add restricted-parse mode, and parse bind expressions. (diff) | |
| download | rust-2ec4325fe9fe5808d7abab544e3a9ce896093f51.tar.xz rust-2ec4325fe9fe5808d7abab544e3a9ce896093f51.zip | |
Unset the RUST_LOG environment variable so that it doesn't interfere with the test suite
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 8cb5df0b..6b77ac84 100644 --- a/src/Makefile +++ b/src/Makefile @@ -578,6 +578,10 @@ ALL_TEST_SOURCES := $(TEST_CFAIL_SOURCES_BOOT) \ ALL_TEST_INPUTS := $(wildcard test/*/*.rs test/*/*/*.rs test/*/*.rc) +# The test suite currently relies on logging to validate results so +# make sure that logging uses the default configuration +unexport RUST_LOG + check_nocompile: $(TEST_CFAIL_OUTS_BOOT) |