tree: d2b333da44a52fa72395bcef6e7fd2f03f41476b [path history] [tgz]
  1. auxiliary/
  2. expand/
  3. include/
  4. ui/
  5. cfg.rs
  6. compiletest.rs
  7. drop_order.rs
  8. expandtest.rs
  9. lint.rs
  10. pin_project.rs
  11. pinned_drop.rs
  12. proper_unpin.rs
  13. README.md
  14. repr_packed.rs
  15. unsafe_unpin.rs
tests/README.md

Tests

To run all tests, run the following command:

cargo +nightly test --all

UI tests (ui, compiletest.rs)

This checks errors detected by the macro or the Rust compiler in the resulting expanded code.

To run this test, run the following command:

cargo +nightly test --test compiletest

Locally, this test updates the files in the ui directory if there are changes to the generated code. If there are any changes to the files in the ui directory after running the test, please commit them.

See also trybuild documentation.

Expansion tests (expand, expandtest.rs)

Similar to ui tests, but instead of checking the compiler output, this checks the code generated by macros.

See examples for descriptions of what the generated code does, and why it needs to be generated.

To run this test, run the following command:

cargo +nightly test --test expandtest

Locally, this test updates the files in the expand directory if there are changes to the generated code. If there are any changes to the files in the expand directory after running the test, please commit them.

See also macrotest documentation.