Skip to content

empty PR to test swift-driver #37132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/Testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -466,15 +466,17 @@ Other substitutions:
* ``%{python}``: run the same Python interpreter that's being used to run the
current ``lit`` test.

* ``%FileCheck``: like the LLVM ``FileCheck`` utility, but occurrences of full
* ``%FileCheck``: like the LLVM [``FileCheck``] utility, but occurrences of full
paths to the source and build directories in the input text are replaced with
path-independent constants.

* ``%raw-FileCheck``: the LLVM ``FileCheck`` utility.
* ``%raw-FileCheck``: the LLVM [``FileCheck``] utility.

* ``%empty-directory(`` *directory-name* ``)``: ensures that the given
directory exists and is empty. Equivalent to
``rm -rf directory-name && mkdir -p directory-name``.

[``FileCheck``]: https://llvm.org/docs/CommandGuide/FileCheck.html

When writing a test where output (or IR, SIL) depends on the bitness of the
target CPU, use this pattern::
Expand Down