diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-17 22:34:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-17 22:34:44 +0100 |
| commit | 4b905c8a5df8bc5cecb0aab08fc31fb3e2b43db6 (patch) | |
| tree | 319c3d6aa6191b166d5b4fc1e55647cac13677fc /tests | |
| parent | 53635e55476980a458e14d3fb3b101446d451d9c (diff) | |
| parent | 13e8313f15cb334827003f1d21720ff91b286991 (diff) | |
| download | rust-4b905c8a5df8bc5cecb0aab08fc31fb3e2b43db6.tar.gz rust-4b905c8a5df8bc5cecb0aab08fc31fb3e2b43db6.zip | |
Rollup merge of #134423 - jieyouxu:bootstrap-test-valid, r=onur-ozkan
bootstrap: use specific-purpose ui test path for `test_valid` self-test I wanted to move some ui tests around in #134418, which broke `test_valid` since it was referencing two non-specific-purpose ui tests. This PR instead adds two dummy tests under `tests/ui/bootstrap/self-test/`, for that purpose specifically. r? bootstrap
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ui/bootstrap/self-test/a.rs | 2 | ||||
| -rw-r--r-- | tests/ui/bootstrap/self-test/b.rs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/bootstrap/self-test/a.rs b/tests/ui/bootstrap/self-test/a.rs new file mode 100644 index 00000000000..64d2d6f11bb --- /dev/null +++ b/tests/ui/bootstrap/self-test/a.rs @@ -0,0 +1,2 @@ +//! Not used by compiler, this is used by bootstrap cli self-test. +//@ ignore-test diff --git a/tests/ui/bootstrap/self-test/b.rs b/tests/ui/bootstrap/self-test/b.rs new file mode 100644 index 00000000000..91f92f67910 --- /dev/null +++ b/tests/ui/bootstrap/self-test/b.rs @@ -0,0 +1,2 @@ +//! Not used by compiler, used by bootstrap cli self-test. +//@ ignore-test |
