diff options
| author | Graydon Hoare <[email protected]> | 2010-07-01 18:37:53 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-01 18:37:53 -0700 |
| commit | fb7e37842b3a9ab552b824cef854168be2dc432a (patch) | |
| tree | 173c564eb37d2eb137a6f0d827ac57b29b2acd28 | |
| parent | Correct existing reliance on auto-box / unbox behavior in tests. (diff) | |
| download | rust-fb7e37842b3a9ab552b824cef854168be2dc432a.tar.xz rust-fb7e37842b3a9ab552b824cef854168be2dc432a.zip | |
Add compile-check target for just attempting to compile, not run, the tests.
| -rw-r--r-- | src/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 5a72afde..cd19ea86 100644 --- a/src/Makefile +++ b/src/Makefile @@ -543,6 +543,9 @@ check: tidy \ $(TEST_RPASS_OUTS_X86) $(TEST_RFAIL_OUTS_X86) \ $(TEST_CFAIL_OUTS_X86) +compile-check: tidy \ + $(TEST_RPASS_EXES_X86) $(TEST_RFAIL_EXES_X86) + ifeq ($(VARIANT),llvm) ALL_TEST_CRATES += $(TEST_CFAIL_CRATES_LLVM) \ |