File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 5
5
Header commands are special comments that tell compiletest how to build and
6
6
interpret a test.
7
7
They must appear before the Rust source in the test.
8
- They may also appear in legacy Makefiles for
8
+ They may also appear in ` rmake.rs ` or legacy Makefiles for
9
9
[ run-make tests] ( compiletest.md#run-make-tests ) .
10
10
11
11
They are normally put after the short comment that explains the point of this test.
@@ -27,6 +27,10 @@ fn main() {
27
27
Header commands can be standalone (like ` //@ run-pass ` ) or take a value (like
28
28
` //@ compile-flags: -C overflow-checks=off ` ).
29
29
30
+ Header commands are written with one header per line: you cannot write multiple
31
+ headers on the same line. For example, if you write ` //@ only-x86 only-windows `
32
+ then ` only-windows ` is interpreted as a comment, not a separate directive.
33
+
30
34
## Header commands
31
35
32
36
The following is a list of header commands.
You can’t perform that action at this time.
0 commit comments