48 releases (21 breaking)

0.22.2 Feb 27, 2024
0.22.0 Jan 24, 2024
0.21.2 Sep 27, 2023
0.12.1 Jul 26, 2023
0.1.0 Jul 28, 2022

#39 in Testing

Download history 5897/week @ 2023-12-04 5277/week @ 2023-12-11 6841/week @ 2023-12-18 4233/week @ 2023-12-25 5269/week @ 2024-01-01 5680/week @ 2024-01-08 6811/week @ 2024-01-15 6147/week @ 2024-01-22 4410/week @ 2024-01-29 5764/week @ 2024-02-05 6823/week @ 2024-02-12 6305/week @ 2024-02-19 9421/week @ 2024-02-26 9519/week @ 2024-03-04 10746/week @ 2024-03-11 10512/week @ 2024-03-18

40,852 downloads per month
Used in 3 crates

MIT/Apache

205KB
5K SLoC

A stable version of compiletest-rs

Magic behavior

  • Tests are run in order of their filenames (files first, then recursing into folders). So if you have any slow tests, prepend them with a small integral number to make them get run first, taking advantage of parallelism as much as possible (instead of waiting for the slow tests at the end).
  • cargo test --test your_test_name -- --help lists the commands you can specify for filtering, blessing and making your tests less verbose.
    • Since cargo test on its own runs all tests, using cargo test -- --check will not work on its own, but cargo test -- --quiet and cargo test -- some_test_name will work just fine, as the CLI matches.
  • if there is a .stdin file with the same filename as your test, it will be piped as standard input to your program.

Supported magic comment annotations

If your test tests for failure, you need to add a //~ annotation where the error is happening to ensure that the test will always keep failing at the annotated line. These comments can take two forms:

  • //~ LEVEL: XXX matches by error level and message text
    • LEVEL can be one of the following (descending order): ERROR, HELP, WARN or NOTE
    • If a level is specified explicitly, all diagnostics of that level or higher need an annotation. To avoid this see //@require-annotations-for-level
    • This checks the output before normalization, so you can check things that get normalized away, but need to be careful not to accidentally have a pattern that differs between platforms.
    • if XXX is of the form /XXX/ it is treated as a regex instead of a substring and will succeed if the regex matches.
  • //~ CODE matches by diagnostic code.
    • CODE can take multiple forms such as: E####, lint_name, tool::lint_name.
    • This will only match a diagnostic at the ERROR level.

In order to change how a single test is tested, you can add various //@ comments to the test. Any other comments will be ignored, and all //@ comments must be formatted precisely as their command specifies, or the test will fail without even being run.

  • //@ignore-C avoids running the test when condition C is met.
    • C can be target-XXX, which checks whether the target triple contains XXX.
    • C can be host-XXX, which checks whether the host triple contains XXX.
    • C can also be one of 64bit, 32bit or 16bit.
    • C can also be on-host, which will only run the test during cross compilation testing.
  • //@only-C only runs the test when condition C is met. The conditions are the same as with ignore.
  • //@needs-asm-support only runs the test when the target supports asm!.
  • //@stderr-per-bitwidth produces one stderr file per bitwidth, as they may differ significantly sometimes
  • //@error-in-other-file: XXX can be used to check for errors that can't have //~ patterns due to being reported in other files.
  • //@revisions: XXX YYY runs the test once for each space separated name in the list
    • emits one stderr file per revision
    • //~ comments can be restricted to specific revisions by adding the revision name after the ~ in square brackets: //~[XXX]
    • //@ comments can be restricted to specific revisions by adding the revision name after the @ in square brackets: //@[XXX]
      • Note that you cannot add revisions to the revisions command.
  • //@compile-flags: XXX appends XXX to the command line arguments passed to the rustc driver
    • you can specify this multiple times, and all the flags will accumulate
  • //@rustc-env: XXX=YYY sets the env var XXX to YYY for the rustc driver execution.
    • for Miri these env vars are used during compilation via rustc and during the emulation of the program
    • you can specify this multiple times, accumulating all the env vars
  • //@normalize-stderr-test: "REGEX" -> "REPLACEMENT" replaces all matches of REGEX in the stderr with REPLACEMENT. The replacement may specify $1 and similar backreferences to paste captures.
    • you can specify multiple such commands, there is no need to create a single regex that handles multiple replacements that you want to perform.
  • //@require-annotations-for-level: LEVEL can be used to change the level of diagnostics that require a corresponding annotation.
    • this is only useful if there are any annotations like HELP, WARN or NOTE, as these would automatically require annotations for all other diagnostics of the same or higher level.
  • //@check-pass requires that a test has no error annotations, emits no errors, and exits successfully with exit/status code 0.
  • //@edition: EDITION overwrites the default edition (2021) to the given edition.
  • //@no-rustfix do not run rustfix on tests that have machine applicable suggestions.
  • //@aux-build: filename looks for a file in the auxiliary directory (within the directory of the test), compiles it as a library and links the current crate against it. This allows you import the crate with extern crate or just via use statements. This will automatically detect aux files that are proc macros and build them as proc macros.
  • //@run compiles the test and runs the resulting binary. The resulting binary must exit successfully. Stdout and stderr are taken from the resulting binary. Any warnings during compilation are ignored.
    • You can also specify a different exit code/status that is expected via e.g. //@run: 1 or //@run: 101 (the latter is the standard Rust exit code for panics).
    • run tests collect the run output into .run.stderr and .run.stdout respectively.
    • if a .run.stdin file exists, it will be piped as standard input to your test's execution.

Significant differences to compiletest-rs

  • ignore-target-* and only-target-* operate solely on the triple, instead of supporting things like macos
  • only supports ui tests
  • tests are run in named order, so you can prefix slow tests with 0 in order to make them get run first
  • aux-builds require specifying nested aux builds explicitly and will not allow you to reference sibling aux-builds' artifacts.

Dependencies

~12–25MB
~352K SLoC