2011-10-13 16:42:43 -07:00
|
|
|
// FIXME: The way this module sets up tests is a relic and more convoluted
|
|
|
|
// than it needs to be
|
|
|
|
|
2011-12-13 16:25:51 -08:00
|
|
|
import option;
|
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-12 19:01:09 -07:00
|
|
|
import std::getopts;
|
|
|
|
import std::test;
|
|
|
|
import std::fs;
|
2011-12-13 16:25:51 -08:00
|
|
|
import str;
|
|
|
|
import vec;
|
|
|
|
import task;
|
2011-08-13 15:20:11 -07:00
|
|
|
|
2011-12-16 01:11:29 +01:00
|
|
|
import core::result;
|
|
|
|
import result::{ok, err};
|
|
|
|
|
2011-12-13 16:25:51 -08:00
|
|
|
import comm::port;
|
|
|
|
import comm::chan;
|
|
|
|
import comm::send;
|
|
|
|
import comm::recv;
|
2011-07-30 21:11:14 -07:00
|
|
|
|
|
|
|
import common::config;
|
|
|
|
import common::mode_run_pass;
|
|
|
|
import common::mode_run_fail;
|
|
|
|
import common::mode_compile_fail;
|
2011-07-30 21:44:30 -07:00
|
|
|
import common::mode_pretty;
|
2011-07-30 21:11:14 -07:00
|
|
|
import common::mode;
|
|
|
|
import util::logv;
|
2011-07-27 14:19:39 +02:00
|
|
|
|
2011-09-02 15:34:58 -07:00
|
|
|
fn main(args: [str]) {
|
2011-08-13 22:34:16 -07:00
|
|
|
let config = parse_config(args);
|
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-12 19:01:09 -07:00
|
|
|
log_config(config);
|
|
|
|
run_tests(config);
|
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn parse_config(args: [str]) -> config {
|
2011-07-27 14:19:39 +02:00
|
|
|
let opts =
|
2011-09-02 15:34:58 -07:00
|
|
|
[getopts::reqopt("compile-lib-path"), getopts::reqopt("run-lib-path"),
|
|
|
|
getopts::reqopt("rustc-path"), getopts::reqopt("src-base"),
|
|
|
|
getopts::reqopt("build-base"), getopts::reqopt("stage-id"),
|
|
|
|
getopts::reqopt("mode"), getopts::optflag("ignored"),
|
|
|
|
getopts::optopt("runtool"), getopts::optopt("rustcflags"),
|
|
|
|
getopts::optflag("verbose")];
|
2011-07-27 14:19:39 +02:00
|
|
|
|
2011-08-15 16:38:23 -07:00
|
|
|
check (vec::is_not_empty(args));
|
|
|
|
let args_ = vec::tail(args);
|
2011-07-27 14:19:39 +02:00
|
|
|
let match =
|
2011-08-11 23:27:32 -07:00
|
|
|
alt getopts::getopts(args_, opts) {
|
2011-12-16 01:11:29 +01:00
|
|
|
ok(m) { m }
|
|
|
|
err(f) { fail getopts::fail_str(f) }
|
2011-07-27 14:19:39 +02:00
|
|
|
};
|
|
|
|
|
2011-09-02 15:34:58 -07:00
|
|
|
ret {compile_lib_path: getopts::opt_str(match, "compile-lib-path"),
|
|
|
|
run_lib_path: getopts::opt_str(match, "run-lib-path"),
|
|
|
|
rustc_path: getopts::opt_str(match, "rustc-path"),
|
|
|
|
src_base: getopts::opt_str(match, "src-base"),
|
|
|
|
build_base: getopts::opt_str(match, "build-base"),
|
|
|
|
stage_id: getopts::opt_str(match, "stage-id"),
|
|
|
|
mode: str_mode(getopts::opt_str(match, "mode")),
|
|
|
|
run_ignored: getopts::opt_present(match, "ignored"),
|
2011-07-27 14:19:39 +02:00
|
|
|
filter:
|
2011-08-15 16:38:23 -07:00
|
|
|
if vec::len(match.free) > 0u {
|
2011-08-24 18:13:27 -07:00
|
|
|
option::some(match.free[0])
|
2011-07-27 14:19:39 +02:00
|
|
|
} else { option::none },
|
2011-09-02 15:34:58 -07:00
|
|
|
runtool: getopts::opt_maybe_str(match, "runtool"),
|
|
|
|
rustcflags: getopts::opt_maybe_str(match, "rustcflags"),
|
|
|
|
verbose: getopts::opt_present(match, "verbose")};
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn log_config(config: config) {
|
2011-07-27 14:19:39 +02:00
|
|
|
let c = config;
|
2011-09-01 18:49:10 -07:00
|
|
|
logv(c, #fmt["configuration:"]);
|
2011-09-02 15:34:58 -07:00
|
|
|
logv(c, #fmt["compile_lib_path: %s", config.compile_lib_path]);
|
2011-09-01 18:49:10 -07:00
|
|
|
logv(c, #fmt["run_lib_path: %s", config.run_lib_path]);
|
|
|
|
logv(c, #fmt["rustc_path: %s", config.rustc_path]);
|
|
|
|
logv(c, #fmt["src_base: %s", config.src_base]);
|
|
|
|
logv(c, #fmt["build_base: %s", config.build_base]);
|
|
|
|
logv(c, #fmt["stage_id: %s", config.stage_id]);
|
|
|
|
logv(c, #fmt["mode: %s", mode_str(config.mode)]);
|
|
|
|
logv(c, #fmt["run_ignored: %b", config.run_ignored]);
|
|
|
|
logv(c, #fmt["filter: %s", opt_str(config.filter)]);
|
|
|
|
logv(c, #fmt["runtool: %s", opt_str(config.runtool)]);
|
|
|
|
logv(c, #fmt["rustcflags: %s", opt_str(config.rustcflags)]);
|
|
|
|
logv(c, #fmt["verbose: %b", config.verbose]);
|
|
|
|
logv(c, #fmt["\n"]);
|
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-12 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
2012-01-31 17:05:20 -08:00
|
|
|
fn opt_str(maybestr: option<str>) -> str {
|
2012-01-18 22:37:22 -08:00
|
|
|
alt maybestr { option::some(s) { s } option::none { "(none)" } }
|
2011-07-26 18:34:29 -07:00
|
|
|
}
|
|
|
|
|
2012-01-31 17:05:20 -08:00
|
|
|
fn str_opt(maybestr: str) -> option<str> {
|
2011-09-02 15:34:58 -07:00
|
|
|
if maybestr != "(none)" { option::some(maybestr) } else { option::none }
|
2011-07-26 18:34:29 -07:00
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn str_mode(s: str) -> mode {
|
2011-08-31 23:46:44 -07:00
|
|
|
alt s {
|
2011-09-02 15:34:58 -07:00
|
|
|
"compile-fail" { mode_compile_fail }
|
|
|
|
"run-fail" { mode_run_fail }
|
|
|
|
"run-pass" { mode_run_pass }
|
|
|
|
"pretty" { mode_pretty }
|
2011-07-26 18:34:29 -07:00
|
|
|
_ { fail "invalid mode" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-02 15:34:58 -07:00
|
|
|
fn mode_str(mode: mode) -> str {
|
2011-07-27 14:19:39 +02:00
|
|
|
alt mode {
|
2012-01-18 22:37:22 -08:00
|
|
|
mode_compile_fail { "compile-fail" }
|
|
|
|
mode_run_fail { "run-fail" }
|
|
|
|
mode_run_pass { "run-pass" }
|
|
|
|
mode_pretty { "pretty" }
|
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-12 19:01:09 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn run_tests(config: config) {
|
2011-07-27 14:19:39 +02:00
|
|
|
let opts = test_opts(config);
|
2012-02-07 18:55:02 -08:00
|
|
|
let tests = make_tests(config);
|
2012-01-19 13:00:30 -08:00
|
|
|
let res = test::run_tests_console(opts, tests);
|
2011-09-11 21:13:59 -07:00
|
|
|
if !res { fail "Some tests failed"; }
|
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-12 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn test_opts(config: config) -> test::test_opts {
|
2011-09-02 15:34:58 -07:00
|
|
|
{filter:
|
|
|
|
alt config.filter {
|
|
|
|
option::some(s) { option::some(s) }
|
2012-01-18 22:37:22 -08:00
|
|
|
option::none { option::none }
|
2011-09-02 15:34:58 -07:00
|
|
|
},
|
|
|
|
run_ignored: config.run_ignored}
|
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-12 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
2012-02-07 18:55:02 -08:00
|
|
|
fn make_tests(config: config) -> [test::test_desc] {
|
|
|
|
#debug("making tests from %s", config.src_base);
|
2011-08-19 15:16:48 -07:00
|
|
|
let tests = [];
|
2012-02-07 18:55:02 -08:00
|
|
|
for file: str in fs::list_dir(config.src_base) {
|
2011-08-28 00:24:28 -07:00
|
|
|
let file = file;
|
2011-12-22 14:42:52 -08:00
|
|
|
#debug("inspecting file %s", file);
|
2012-02-07 18:55:02 -08:00
|
|
|
if is_test(config, file) {
|
|
|
|
tests += [make_test(config, file)]
|
2011-07-30 21:57:28 -07: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-12 19:01:09 -07:00
|
|
|
}
|
2012-01-19 13:00:30 -08:00
|
|
|
ret tests;
|
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-12 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn is_test(config: config, testfile: str) -> bool {
|
2011-07-30 21:57:28 -07:00
|
|
|
// Pretty-printer does not work with .rc files yet
|
2011-09-02 15:34:58 -07:00
|
|
|
let valid_extensions =
|
2012-01-18 22:37:22 -08:00
|
|
|
alt config.mode { mode_pretty { [".rs"] } _ { [".rc", ".rs"] } };
|
2011-09-02 15:34:58 -07:00
|
|
|
let invalid_prefixes = [".", "#", "~"];
|
2011-08-30 15:40:25 -07:00
|
|
|
let name = fs::basename(testfile);
|
2011-07-30 21:57:28 -07:00
|
|
|
|
|
|
|
let valid = false;
|
|
|
|
|
|
|
|
for ext in valid_extensions {
|
2011-09-16 16:57:54 +02:00
|
|
|
if str::ends_with(name, ext) { valid = true; }
|
2011-07-30 21:57:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for pre in invalid_prefixes {
|
2011-09-16 16:57:54 +02:00
|
|
|
if str::starts_with(name, pre) { valid = false; }
|
2011-07-30 21:57:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ret valid;
|
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-12 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
2012-02-07 18:55:02 -08:00
|
|
|
fn make_test(config: config, testfile: str) ->
|
2012-01-19 13:00:30 -08:00
|
|
|
test::test_desc {
|
|
|
|
{
|
2012-02-07 18:55:02 -08:00
|
|
|
name: make_test_name(config, testfile),
|
|
|
|
fn: make_test_closure(config, testfile),
|
|
|
|
ignore: header::is_test_ignored(config, testfile),
|
2012-01-19 13:00:30 -08:00
|
|
|
should_fail: false
|
|
|
|
}
|
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-12 19:01:09 -07:00
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn make_test_name(config: config, testfile: str) -> str {
|
2011-09-01 18:49:10 -07:00
|
|
|
#fmt["[%s] %s", mode_str(config.mode), testfile]
|
2011-07-30 21:44:30 -07:00
|
|
|
}
|
|
|
|
|
2012-02-07 18:55:02 -08:00
|
|
|
fn make_test_closure(config: config, testfile: str) -> test::test_fn {
|
2012-01-19 13:00:30 -08:00
|
|
|
ret {||
|
2012-02-07 18:55:02 -08:00
|
|
|
runtest::run(config, copy testfile);
|
2012-01-04 21:14:53 -08:00
|
|
|
};
|
2011-07-27 14:19:39 +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-12 19:01:09 -07:00
|
|
|
// Local Variables:
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|