diff --git a/rust-version b/rust-version index c1b9fe3ea..ac3099d84 100644 --- a/rust-version +++ b/rust-version @@ -1 +1 @@ -9602bda1dd0c1bbf5787e398385bbac81fd532f8 +30d0309fa821f7a0984a9629e0d227ca3c0d2eda diff --git a/src/tests/ci.md b/src/tests/ci.md index 5581b7eb9..b656d9495 100644 --- a/src/tests/ci.md +++ b/src/tests/ci.md @@ -150,7 +150,10 @@ Such a try build will not execute any tests, and it will allow compilation warni It is useful when you want to get an optimized toolchain as fast as possible, for a Crater run or performance benchmarks, even if it might not be working fully correctly. -If you want to do a full build for the default try job, + +The CI job executed in fast try builds has a special suffix (`-quick`), +to distinguish it from a full build of the default try job. +If you want to do the full build instead, specify its job name in a job pattern (explained below). If you want to run custom CI jobs in a try build and make sure that they pass all tests and do diff --git a/src/tests/compiletest.md b/src/tests/compiletest.md index a239310d1..83fcfecc1 100644 --- a/src/tests/compiletest.md +++ b/src/tests/compiletest.md @@ -158,9 +158,9 @@ then runs the compiler for each revision, reusing the incremental results from p The revisions should start with: -* `rpass` — the test should compile and run successfully -* `rfail` — the test should compile successfully, but the executable should fail to run * `cfail` — the test should fail to compile +* `cpass` — the test should compile successully +* `rpass` — the test should compile and run successfully To make the revisions unique, you should add a suffix like `rpass1` and `rpass2`.