File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -171,8 +171,8 @@ source.
171
171
argument is the first version to ignore. If no second argument is
172
172
given, all subsequent versions are ignored; otherwise, the second
173
173
argument is the last version to ignore.
174
- * ` compile -pass` for UI tests, indicates that the test is
175
- supposed to compile, as opposed to the default where the test is
174
+ * ` build -pass` for UI tests, indicates that the test is supposed to
175
+ successfully compile and link , as opposed to the default where the test is
176
176
supposed to error out.
177
177
* ` compile-flags ` passes extra command-line args to the compiler,
178
178
e.g. ` compile-flags -g ` which forces debuginfo to be enabled.
@@ -279,7 +279,9 @@ can also make UI tests where compilation is expected to succeed, and
279
279
you can even run the resulting program. Just add one of the following
280
280
[ header commands] ( #header_commands ) :
281
281
282
- - ` // compile-pass ` – compilation should succeed but do
282
+ - ` // check-pass ` - compilation should succeed but skip codegen
283
+ (which is expensive and isn't supposed to fail in most cases)
284
+ - ` // build-pass ` – compilation and linking should succeed but do
283
285
not run the resulting binary
284
286
- ` // run-pass ` – compilation should succeed and we should run the
285
287
resulting binary
You can’t perform that action at this time.
0 commit comments