You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/tests/directives.md
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,7 @@
6
6
FIXME(jieyouxu) completely revise this chapter.
7
7
-->
8
8
9
-
Directives are special comments that tell compiletest how to build and interpret
10
-
a test. They must appear before the Rust source in the test. They may also
11
-
appear in `rmake.rs` or legacy Makefiles for [run-make
12
-
tests](compiletest.md#run-make-tests).
9
+
Directives are special comments that tell compiletest how to build and interpret a test. They must appear before the Rust source in the test. They may also appear in `rmake.rs`[run-make tests](compiletest.md#run-make-tests).
13
10
14
11
They are normally put after the short comment that explains the point of this
15
12
test. Compiletest test suites use `//@` to signal that a comment is a directive.
@@ -142,6 +139,7 @@ Some examples of `X` in `ignore-X` or `only-X`:
142
139
matches that target as well as the emscripten targets.
143
140
- Pointer width: `32bit`, `64bit`
144
141
- Endianness: `endian-big`
142
+
- Binary format: `elf`
145
143
- Stage: `stage0`, `stage1`, `stage2`
146
144
- Channel: `stable`, `beta`
147
145
- When cross compiling: `cross-compile`
@@ -221,8 +219,6 @@ The following directives will check LLVM support:
221
219
[`aarch64-gnu-debug`]), which only runs a
222
220
subset of `run-make` tests. Other tests with this directive will not
223
221
run at all, which is usually not what you want.
224
-
- Notably, the [`aarch64-gnu-debug`] CI job *currently* only runs `run-make`
225
-
tests which additionally contain `clang` in their test name.
226
222
227
223
See also [Debuginfo tests](compiletest.md#debuginfo-tests) for directives for
0 commit comments