2011-05-01 22:18:52 +02:00
|
|
|
######################################################################
|
|
|
|
# Testing variables
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
ALL_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs \
|
|
|
|
$(S)src/test/*/*/*.rs \
|
|
|
|
$(S)src/test/*/*.rc)
|
|
|
|
|
2011-06-25 21:23:27 +02:00
|
|
|
RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc)
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs)
|
2011-06-25 21:23:27 +02:00
|
|
|
RFAIL_RC := $(wildcard $(S)src/test/run-fail/*.rc)
|
|
|
|
RFAIL_RS := $(wildcard $(S)src/test/run-fail/*.rs)
|
|
|
|
CFAIL_RC := $(wildcard $(S)src/test/compile-fail/*.rc)
|
|
|
|
CFAIL_RS := $(wildcard $(S)src/test/compile-fail/*.rs)
|
2011-08-01 23:10:59 +02:00
|
|
|
BENCH_RS := $(wildcard $(S)src/test/bench/*.rs)
|
|
|
|
PRETTY_RS := $(wildcard $(S)src/test/pretty/*.rs)
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-09-14 00:06:21 +02:00
|
|
|
# perf tests are the same as bench tests only they run under
|
|
|
|
# a performance monitor.
|
|
|
|
PERF_RS := $(wildcard $(S)src/test/bench/*.rs)
|
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
RPASS_TESTS := $(RPASS_RC) $(RPASS_RS)
|
|
|
|
RFAIL_TESTS := $(RFAIL_RC) $(RFAIL_RS)
|
|
|
|
CFAIL_TESTS := $(CFAIL_RC) $(CFAIL_RS)
|
2011-08-01 22:15:36 +02:00
|
|
|
BENCH_TESTS := $(BENCH_RS)
|
2011-09-14 00:06:21 +02:00
|
|
|
PERF_TESTS := $(PERF_RS)
|
2011-08-01 23:10:59 +02:00
|
|
|
PRETTY_TESTS := $(PRETTY_RS)
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-06-30 00:12:02 +02:00
|
|
|
FT := run_pass_stage2
|
|
|
|
FT_LIB := $(call CFG_LIB_NAME,$(FT))
|
|
|
|
FT_DRIVER := $(FT)_driver
|
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
# The arguments to all test runners
|
|
|
|
ifdef TESTNAME
|
|
|
|
TESTARGS += $(TESTNAME)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CHECK_XFAILS
|
|
|
|
TESTARGS += --ignored
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Arguments to the cfail/rfail/rpass/bench tests
|
|
|
|
ifdef CFG_VALGRIND
|
|
|
|
CTEST_RUNTOOL = --runtool "$(CFG_VALGRIND)"
|
|
|
|
endif
|
2011-06-30 00:12:02 +02:00
|
|
|
|
2011-09-14 00:06:21 +02:00
|
|
|
# Arguments to the perf tests
|
|
|
|
ifdef CFG_PERF_TOOL
|
|
|
|
CTEST_PERF_RUNTOOL = --runtool "$(CFG_PERF_TOOL)"
|
|
|
|
endif
|
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
CTEST_TESTARGS := $(TESTARGS)
|
2011-05-01 22:18:52 +02:00
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
ifdef VERBOSE
|
|
|
|
CTEST_TESTARGS += --verbose
|
|
|
|
endif
|
2011-05-05 02:32:05 +02:00
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
# The standard library test crate
|
|
|
|
STDTEST_CRATE := $(S)src/test/stdtest/stdtest.rc
|
|
|
|
STDTEST_INPUTS := $(wildcard $(S)src/test/stdtest/*rs)
|
2011-05-05 02:32:05 +02:00
|
|
|
|
2011-08-01 01:45:09 +02:00
|
|
|
# Run the compiletest runner itself under valgrind
|
|
|
|
ifdef CTEST_VALGRIND
|
2011-11-29 06:23:42 +01:00
|
|
|
CFG_RUN_CTEST=$(call CFG_RUN_TEST,$(2),$(3))
|
2011-08-01 01:45:09 +02:00
|
|
|
else
|
2011-11-22 20:25:51 +01:00
|
|
|
CFG_RUN_CTEST=$(call CFG_RUN,$(TLIB$(1)_T_$(3)_H_$(3)),$(2))
|
2011-08-01 01:45:09 +02:00
|
|
|
endif
|
2011-05-05 02:32:05 +02:00
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
######################################################################
|
|
|
|
# Main test targets
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
check: tidy check-stage2 \
|
2011-05-05 02:32:05 +02:00
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
check-full: tidy check-stage1 check-stage2 check-stage3 \
|
2011-05-11 18:37:23 +02:00
|
|
|
|
2011-10-31 20:57:50 +01:00
|
|
|
# Run the tidy script in multiple parts to avoid huge 'echo' commands
|
2011-11-18 23:03:11 +01:00
|
|
|
ifdef CFG_NOTIDY
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
tidy:
|
2011-11-18 23:03:11 +01:00
|
|
|
else
|
|
|
|
tidy:
|
|
|
|
@$(call E, check: formatting)
|
|
|
|
$(Q)echo \
|
|
|
|
$(addprefix $(S)src/, $(RUSTLLVM_LIB_CS) $(RUSTLLVM_OBJS_CS) \
|
|
|
|
$(RUSTLLVM_HDR) \
|
|
|
|
$(RUNTIME_CS) $(RUNTIME_HDR) $(RUNTIME_S)) \
|
|
|
|
$(wildcard $(S)src/etc/*.py) \
|
|
|
|
$(COMPILER_CRATE) \
|
|
|
|
$(COMPILER_INPUTS) \
|
|
|
|
$(STDLIB_CRATE) \
|
|
|
|
$(STDLIB_INPUTS) \
|
|
|
|
$(COMPILETEST_CRATE) \
|
|
|
|
$(COMPILETEST_INPUTS) \
|
|
|
|
| xargs -n 10 python $(S)src/etc/tidy.py
|
|
|
|
$(Q)echo \
|
|
|
|
$(ALL_TEST_INPUTS) \
|
|
|
|
| xargs -n 10 python $(S)src/etc/tidy.py
|
|
|
|
endif
|
2011-06-30 00:12:02 +02:00
|
|
|
|
|
|
|
######################################################################
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
# Rules for the test runners
|
2011-06-30 00:12:02 +02:00
|
|
|
######################################################################
|
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
define TEST_STAGEN
|
2011-06-30 00:12:02 +02:00
|
|
|
|
2011-10-03 02:37:50 +02:00
|
|
|
# All the per-stage build rules you might want to call from the
|
2011-11-11 07:16:07 +01:00
|
|
|
# command line.
|
|
|
|
#
|
|
|
|
# $(1) is the stage number
|
2011-11-21 22:11:40 +01:00
|
|
|
# $(2) is the target triple to test
|
|
|
|
# $(3) is the host triple to test
|
2011-08-01 21:12:50 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3): tidy \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rustc \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-std \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rpass \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rfail \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-cfail \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-bench \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty
|
2011-06-30 00:12:02 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-std: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-std-dummy
|
2011-06-30 00:12:02 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rustc: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rustc-dummy
|
2011-06-30 00:12:02 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-cfail: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-cfail-dummy
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rfail: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rfail-dummy
|
2011-06-25 21:23:27 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rpass: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rpass-dummy
|
2011-06-16 21:06:09 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-bench: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-bench-dummy
|
2011-06-16 21:06:09 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-perf: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-perf-dummy
|
2011-06-16 21:06:09 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rfail \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-bench \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-pretty
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass-dummy
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rfail: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rfail-dummy
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-bench: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-bench-dummy
|
2011-05-01 22:18:52 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-pretty: \
|
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-pretty-dummy
|
2011-07-12 22:04:29 +02:00
|
|
|
|
2011-10-03 02:37:50 +02:00
|
|
|
# Rules for the standard library test runner
|
2011-07-06 23:33:36 +02:00
|
|
|
|
2011-11-21 22:11:40 +01:00
|
|
|
$(3)/test/stdtest.stage$(1)-$(2)$$(X): \
|
|
|
|
$$(STDTEST_CRATE) $$(STDTEST_INPUTS) \
|
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3))
|
2011-10-03 02:37:50 +02:00
|
|
|
@$$(call E, compile_and_link: $$@)
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test
|
2011-07-12 22:04:29 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-std-dummy: \
|
2011-11-21 22:11:40 +01:00
|
|
|
$(3)/test/stdtest.stage$(1)-$(2)$$(X)
|
2011-10-03 02:37:50 +02:00
|
|
|
@$$(call E, run: $$<)
|
2011-11-29 06:23:42 +01:00
|
|
|
$$(Q)$$(call CFG_RUN_TEST,$$<,$(2),$(3)) $$(TESTARGS)
|
2011-07-12 22:04:29 +02:00
|
|
|
|
2011-10-03 02:37:50 +02:00
|
|
|
# Rules for the rustc test runner
|
2011-08-01 20:57:05 +02:00
|
|
|
|
2011-11-21 22:11:40 +01:00
|
|
|
$(3)/test/rustctest.stage$(1)-$(2)$$(X): \
|
|
|
|
$$(COMPILER_CRATE) \
|
|
|
|
$$(COMPILER_INPUTS) \
|
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(TLIB$(1)_T_$(2)_H_$(3))/$$(CFG_RUSTLLVM)
|
2011-10-03 02:37:50 +02:00
|
|
|
@$$(call E, compile_and_link: $$@)
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(STAGE$(1)_T_$(2)_H_$(3)) -o $$@ $$< --test
|
2011-08-01 20:57:05 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rustc-dummy: \
|
2011-11-21 22:11:40 +01:00
|
|
|
$(3)/test/rustctest.stage$(1)-$(2)$$(X)
|
2011-10-03 02:37:50 +02:00
|
|
|
@$$(call E, run: $$<)
|
2011-11-29 06:23:42 +01:00
|
|
|
$$(Q)$$(call CFG_RUN_TEST,$$<,$(2),$(3)) $$(TESTARGS)
|
2011-08-01 23:10:59 +02:00
|
|
|
|
2011-10-03 02:37:50 +02:00
|
|
|
# Rules for the cfail/rfail/rpass/bench/perf test runner
|
2011-08-01 23:10:59 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-21 22:11:40 +01:00
|
|
|
--compile-lib-path $$(HLIB$(1)_H_$(3)) \
|
|
|
|
--run-lib-path $$(TLIB$(1)_T_$(2)_H_$(3)) \
|
|
|
|
--rustc-path $$(HBIN$(1)_H_$(3))/rustc$$(X) \
|
|
|
|
--stage-id stage$(1)-$(2) \
|
|
|
|
--rustcflags "$$(CFG_RUSTC_FLAGS) --target=$(2)" \
|
|
|
|
$$(CTEST_TESTARGS)
|
|
|
|
|
2011-11-24 00:20:28 +01:00
|
|
|
CFAIL_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/compile-fail/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/compile-fail/ \
|
2011-11-21 22:11:40 +01:00
|
|
|
--mode compile-fail
|
|
|
|
|
2011-11-24 00:20:28 +01:00
|
|
|
RFAIL_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/run-fail/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/run-fail/ \
|
2011-11-22 07:45:14 +01:00
|
|
|
--mode run-fail \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(CTEST_RUNTOOL)
|
|
|
|
|
2011-11-29 16:07:25 +01:00
|
|
|
RPASS_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/run-pass/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/run-pass/ \
|
2011-11-29 16:07:25 +01:00
|
|
|
--mode run-pass \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(CTEST_RUNTOOL)
|
|
|
|
|
2011-11-29 16:07:25 +01:00
|
|
|
BENCH_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/bench/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/bench/ \
|
2011-11-29 16:07:25 +01:00
|
|
|
--mode run-pass \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(CTEST_RUNTOOL)
|
|
|
|
|
2011-11-24 00:20:28 +01:00
|
|
|
PERF_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/bench/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/perf/ \
|
2011-11-22 07:45:14 +01:00
|
|
|
--mode run-pass \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(CTEST_PERF_RUNTOOL)
|
|
|
|
|
2011-11-24 00:20:28 +01:00
|
|
|
PRETTY_RPASS_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/run-pass/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/run-pass/ \
|
2011-11-22 07:45:14 +01:00
|
|
|
--mode pretty
|
|
|
|
|
2011-11-24 00:20:28 +01:00
|
|
|
PRETTY_RFAIL_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/run-fail/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/run-fail/ \
|
2011-11-22 07:45:14 +01:00
|
|
|
--mode pretty
|
|
|
|
|
2011-11-24 00:20:28 +01:00
|
|
|
PRETTY_BENCH_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/bench/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/bench/ \
|
2011-11-22 07:45:14 +01:00
|
|
|
--mode pretty
|
|
|
|
|
2011-11-24 00:20:28 +01:00
|
|
|
PRETTY_PRETTY_ARGS$(1)-T-$(2)-H-$(3) := \
|
2011-11-22 07:45:14 +01:00
|
|
|
$$(CTEST_COMMON_ARGS$(1)-T-$(2)-H-$(3)) \
|
|
|
|
--src-base $$(S)src/test/pretty/ \
|
2011-11-24 00:20:28 +01:00
|
|
|
--build-base $(3)/test/pretty/ \
|
2011-11-22 07:45:14 +01:00
|
|
|
--mode pretty
|
|
|
|
|
2011-11-22 20:25:51 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-cfail-dummy: \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(CFAIL_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run cfail: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(CFAIL_ARGS$(1)-T-$(2)-H-$(3))
|
2011-07-13 00:27:00 +02:00
|
|
|
|
2011-11-22 20:25:51 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rfail-dummy: \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(RFAIL_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run rfail: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(RFAIL_ARGS$(1)-T-$(2)-H-$(3))
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
|
2011-11-22 20:25:51 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-rpass-dummy: \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(RPASS_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run rpass: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(RPASS_ARGS$(1)-T-$(2)-H-$(3))
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
|
2011-11-22 20:25:51 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-bench-dummy: \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(BENCH_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run bench: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(BENCH_ARGS$(1)-T-$(2)-H-$(3))
|
2011-07-13 00:27:00 +02:00
|
|
|
|
2011-11-22 20:25:51 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-perf-dummy: \
|
2011-11-21 22:11:40 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
2011-11-29 20:06:08 +01:00
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(BENCH_TESTS)
|
2011-09-14 00:06:21 +02:00
|
|
|
@$$(call E, perf: $$<)
|
2011-11-22 20:25:51 +01:00
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(PERF_ARGS$(1)-T-$(2)-H-$(3))
|
2011-09-14 00:06:21 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rpass-dummy: \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(RPASS_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run pretty-rpass: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(PRETTY_RPASS_ARGS$(1)-T-$(2)-H-$(3))
|
2011-08-01 20:57:05 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-rfail-dummy: \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(RFAIL_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run pretty-rfail: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(PRETTY_RFAIL_ARGS$(1)-T-$(2)-H-$(3))
|
2011-08-01 20:57:05 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-bench-dummy: \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(BENCH_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run pretty-bench: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(PRETTY_BENCH_ARGS$(1)-T-$(2)-H-$(3))
|
2011-08-02 23:37:03 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-T-$(2)-H-$(3)-pretty-pretty-dummy: \
|
2011-11-29 16:07:25 +01:00
|
|
|
$$(HBIN$(1)_H_$(3))/compiletest$$(X) \
|
|
|
|
$$(SREQ$(1)_T_$(2)_H_$(3)) \
|
|
|
|
$$(PRETTY_TESTS)
|
2011-11-22 20:25:51 +01:00
|
|
|
@$$(call E, run pretty-pretty: $$<)
|
|
|
|
$$(Q)$$(call CFG_RUN_CTEST,$(1),$$<,$(3)) \
|
|
|
|
$$(PRETTY_PRETTY_ARGS$(1)-T-$(2)-H-$(3))
|
2011-07-31 06:44:30 +02:00
|
|
|
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
endef
|
2011-07-13 00:27:00 +02:00
|
|
|
|
2011-07-30 03:35:32 +02:00
|
|
|
# Instantiate the template for stage 0, 1, 2, 3
|
2011-07-13 00:27:00 +02:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
$(foreach host,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(foreach target,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(foreach stage,$(STAGES), \
|
|
|
|
$(eval $(call TEST_STAGEN,$(stage),$(target),$(host))))))))
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
|
2011-11-29 16:07:25 +01:00
|
|
|
######################################################################
|
|
|
|
# Fast-test rules
|
|
|
|
######################################################################
|
2011-11-17 21:04:37 +01:00
|
|
|
|
2011-11-29 16:07:25 +01:00
|
|
|
GENERATED += tmp/$$(FT).rc tmp/$$(FT_DRIVER).rs
|
|
|
|
|
2011-11-29 17:03:22 +01:00
|
|
|
tmp/$(FT).rc tmp/$(FT_DRIVER).rs: \
|
|
|
|
$(TEST_RPASS_SOURCES_STAGE2) \
|
|
|
|
$(S)src/etc/combine-tests.py
|
|
|
|
@$(call E, check: building combined stage2 test runner)
|
|
|
|
$(Q)$(S)src/etc/combine-tests.py
|
2011-11-29 16:07:25 +01:00
|
|
|
|
|
|
|
define DEF_CHECK_FAST_FOR_T_H
|
|
|
|
# $(1) unused
|
|
|
|
# $(2) target triple
|
|
|
|
# $(3) host triple
|
|
|
|
|
|
|
|
$$(TLIB2_T_$(2)_H_$(3))/$$(FT_LIB): \
|
|
|
|
tmp/$$(FT).rc \
|
|
|
|
$$(SREQ2_T_$(2)_H_$(3))
|
|
|
|
@$$(call E, compile_and_link: $$@)
|
2011-11-29 17:03:22 +01:00
|
|
|
$$(STAGE2_T_$(2)_H_$(3)) --lib -o $$@ $$<
|
2011-11-29 16:07:25 +01:00
|
|
|
|
2011-11-29 17:03:22 +01:00
|
|
|
$(3)/test/$$(FT_DRIVER)-$(2)$$(X): \
|
|
|
|
tmp/$$(FT_DRIVER).rs \
|
|
|
|
$$(TLIB2_T_$(2)_H_$(3))/$$(FT_LIB) \
|
|
|
|
$$(SREQ2_T_$(2)_H_$(3))
|
|
|
|
@$$(call E, compile_and_link: $$@ $$<)
|
|
|
|
$$(STAGE2_T_$(2)_H_$(3)) -L $$(TLIB2_T_$(2)_H_$(3)) -o $$@ $$<
|
2011-11-29 16:07:25 +01:00
|
|
|
|
2011-11-29 17:03:22 +01:00
|
|
|
$(3)/test/$$(FT_DRIVER)-$(2).out: \
|
|
|
|
$(3)/test/$$(FT_DRIVER)-$(2)$$(X) \
|
|
|
|
$$(SREQ2_T_$(2)_H_$(3))
|
|
|
|
$$(Q)$$(call CFG_RUN_TEST,$$<,$(2),$(3))
|
2011-11-29 16:07:25 +01:00
|
|
|
|
|
|
|
check-fast-T-$(2)-H-$(3): tidy \
|
|
|
|
check-stage2-T-$(2)-H-$(3)-rustc \
|
|
|
|
check-stage2-T-$(2)-H-$(3)-std \
|
2011-11-29 17:03:22 +01:00
|
|
|
$(3)/test/$$(FT_DRIVER)-$(2).out
|
2011-11-29 16:07:25 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach host,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(foreach target,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(call DEF_CHECK_FAST_FOR_T_H,,$(target),$(host))))))
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
# Shortcut rules
|
|
|
|
######################################################################
|
|
|
|
|
|
|
|
define DEF_CHECK_FOR_STAGE_H
|
2011-11-17 21:04:37 +01:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
check-stage$(1)-H-$(2): check-stage$(1)-T-$(2)-H-$(2)
|
|
|
|
check-stage$(1)-H-$(2)-perf: check-stage$(1)-T-$(2)-H-$(2)-perf
|
|
|
|
check-stage$(1)-H-$(2)-rustc: check-stage$(1)-T-$(2)-H-$(2)-rustc
|
|
|
|
check-stage$(1)-H-$(2)-std: check-stage$(1)-T-$(2)-H-$(2)-std
|
|
|
|
check-stage$(1)-H-$(2)-rpass: check-stage$(1)-T-$(2)-H-$(2)-rpass
|
|
|
|
check-stage$(1)-H-$(2)-rfail: check-stage$(1)-T-$(2)-H-$(2)-rfail
|
|
|
|
check-stage$(1)-H-$(2)-cfail: check-stage$(1)-T-$(2)-H-$(2)-cfail
|
|
|
|
check-stage$(1)-H-$(2)-bench: check-stage$(1)-T-$(2)-H-$(2)-bench
|
2011-11-17 21:04:37 +01:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
2011-11-29 16:07:25 +01:00
|
|
|
$(foreach stage,$(STAGES), \
|
2011-11-22 07:45:14 +01:00
|
|
|
$(eval $(foreach target,$(CFG_TARGET_TRIPLES), \
|
2011-11-29 16:07:25 +01:00
|
|
|
$(eval $(call DEF_CHECK_FOR_STAGE_H,$(stage),$(target))))))
|
|
|
|
|
|
|
|
define DEF_CHECK_FAST_FOR_H
|
|
|
|
|
|
|
|
check-fast-H-$(1): check-fast-T-$(1)-H-$(1)
|
|
|
|
|
|
|
|
endef
|
2011-11-22 07:45:14 +01:00
|
|
|
|
2011-11-29 16:07:25 +01:00
|
|
|
$(foreach target,$(CFG_TARGET_TRIPLES), \
|
|
|
|
$(eval $(call DEF_CHECK_FAST_FOR_H,$(target))))
|
|
|
|
|
|
|
|
define DEF_CHECK_FOR_STAGE
|
2011-11-22 07:45:14 +01:00
|
|
|
|
|
|
|
check-stage$(1): check-stage$(1)-H-$(CFG_HOST_TRIPLE)
|
|
|
|
check-stage$(1)-perf: check-stage$(1)-H-$(CFG_HOST_TRIPLE)-perf
|
|
|
|
check-stage$(1)-rustc: check-stage$(1)-H-$(CFG_HOST_TRIPLE)-rustc
|
|
|
|
check-stage$(1)-std: check-stage$(1)-H-$(CFG_HOST_TRIPLE)-std
|
|
|
|
check-stage$(1)-rpass: check-stage$(1)-H-$(CFG_HOST_TRIPLE)-rpass
|
|
|
|
check-stage$(1)-rfail: check-stage$(1)-H-$(CFG_HOST_TRIPLE)-rfail
|
|
|
|
check-stage$(1)-cfail: check-stage$(1)-H-$(CFG_HOST_TRIPLE)-cfail
|
|
|
|
check-stage$(1)-bench: check-stage$(1)-H-$(CFG_HOST_TRIPLE)-bench
|
|
|
|
|
|
|
|
endef
|
2011-11-17 21:04:37 +01:00
|
|
|
|
2011-11-22 07:45:14 +01:00
|
|
|
$(foreach stage,$(STAGES), \
|
2011-11-29 16:07:25 +01:00
|
|
|
$(eval $(call DEF_CHECK_FOR_STAGE,$(stage))))
|
The Big Test Suite Overhaul
This replaces the make-based test runner with a set of Rust-based test
runners. I believe that all existing functionality has been
preserved. The primary objective is to dogfood the Rust test
framework.
A few main things happen here:
1) The run-pass/lib-* tests are all moved into src/test/stdtest. This
is a standalone test crate intended for all standard library tests. It
compiles to build/test/stdtest.stageN.
2) rustc now compiles into yet another build artifact, this one a test
runner that runs any tests contained directly in the rustc crate. This
allows much more fine-grained unit testing of the compiler. It
compiles to build/test/rustctest.stageN.
3) There is a new custom test runner crate at src/test/compiletest
that reproduces all the functionality for running the compile-fail,
run-fail, run-pass and bench tests while integrating with Rust's test
framework. It compiles to build/test/compiletest.stageN.
4) The build rules have been completely changed to use the new test
runners, while also being less redundant, following the example of the
recent stageN.mk rewrite.
It adds two new features to the cfail/rfail/rpass/bench tests:
1) Tests can specify multiple 'error-pattern' directives which must be
satisfied in order.
2) Tests can specify a 'compile-flags' directive which will make the
test runner provide additional command line arguments to rustc.
There are some downsides, the primary being that Rust has to be
functioning pretty well just to run _any_ tests, which I imagine will
be the source of some frustration when the entire test suite
breaks. Will also cause some headaches during porting.
Not having individual make rules, each rpass, etc test no longer
remembers between runs whether it completed successfully. As a result,
it's not possible to incrementally fix multiple tests by just running
'make check', fixing a test, and repeating without re-running all the
tests contained in the test runner. Instead you can filter just the
tests you want to run by using the TESTNAME environment variable.
This also dispenses with the ability to run stage0 tests, but they
tended to be broken more often than not anyway.
2011-07-13 04:01:09 +02:00
|
|
|
|
2011-11-29 16:07:25 +01:00
|
|
|
check-fast: check-fast-H-$(CFG_HOST_TRIPLE)
|