Skip to content

Commit b8ea0ca

Browse files
committed
Stub out codegen backend test pages
1 parent 29907a5 commit b8ea0ca

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed

src/SUMMARY.md

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
- [Crater](./tests/crater.md)
3131
- [Fuchsia](./tests/ecosystem-test-jobs/fuchsia.md)
3232
- [Rust for Linux](./tests/ecosystem-test-jobs/rust-for-linux.md)
33+
- [Codegen backend testing](./tests/codegen-backend-tests/intro.md)
34+
- [Cranelift codegen backend](./tests/codegen-backend-tests/cg_clif.md)
35+
- [GCC codegen backend](./tests/codegen-backend-tests/cg_gcc.md)
3336
- [Performance testing](./tests/perf.md)
3437
- [Suggest tests tool](./tests/suggest-tests.md)
3538
- [Misc info](./tests/misc.md)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Cranelift codegen backend tests
2+
3+
TODO: please add some more information to this page.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# GCC codegen backend tests
2+
3+
TODO: please add some more information to this page.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Codegen backend testing
2+
3+
See also the [Code generation](../../../src/backend/codegen.md) chapter.
4+
5+
In addition to the primary LLVM codegen backend, the rust-lang/rust CI also runs tests of the [cranelift][cg_clif] and [GCC][cg_gcc] codegen backends in certain test jobs.
6+
7+
For more details on the tests involved, see:
8+
9+
- [Cranelift codegen backend tests](./cg_clif.md)
10+
- [GCC codegen backend tests](./cg_gcc.md)
11+
12+
[cg_clif]: https://github.com/rust-lang/rustc_codegen_cranelift
13+
[cg_gcc]: https://github.com/rust-lang/rustc_codegen_gcc

src/tests/intro.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ directory, and `x` will essentially run `cargo test` on that package.
3838
Examples:
3939

4040
| Command | Description |
41-
| ----------------------------------------- | ------------------------------------- |
41+
|-------------------------------------------|---------------------------------------|
4242
| `./x test library/std` | Runs tests on `std` only |
4343
| `./x test library/core` | Runs tests on `core` only |
4444
| `./x test compiler/rustc_data_structures` | Runs tests on `rustc_data_structures` |
@@ -86,7 +86,7 @@ above.
8686
Examples:
8787

8888
| Command | Description |
89-
| ----------------------- | ------------------------------------------------------------------ |
89+
|-------------------------|--------------------------------------------------------------------|
9090
| `./x fmt --check` | Checks formatting and exits with an error if formatting is needed. |
9191
| `./x fmt` | Runs rustfmt across the entire codebase. |
9292
| `./x test tidy --bless` | First runs rustfmt to format the codebase, then runs tidy checks. |
@@ -155,6 +155,10 @@ chapter](ecosystem.md) for more details.
155155
A separate infrastructure is used for testing and tracking performance of the
156156
compiler. See the [Performance testing chapter](perf.md) for more details.
157157

158+
### Codegen backend testing
159+
160+
See [Codegen backend testing](./codegen-backend-tests/intro.md).
161+
158162
## Miscellaneous information
159163

160164
There are some other useful testing-related info at [Misc info](misc.md).

0 commit comments

Comments
 (0)