Skip to content

Commit 4f0e726

Browse files
committed
fixup! [libcxx][docs] Make test name pattern documentation more obvious
Address final comments.
1 parent a5f8fbd commit 4f0e726

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libcxx/docs/TestingLibcxx.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -351,17 +351,17 @@ Test Filenames`_ when determining the names for new test files.
351351
- Same as ``FOO.pass.cpp``, but for Objective-C++.
352352

353353
* - ``FOO.compile.pass.cpp``
354-
- Checks whether the C++ code in the file compiles successfully. In general, prefer `compile` tests over `verify` tests,
355-
subject to the specific recommendations, below, for when to write `verify` tests.
354+
- Checks whether the C++ code in the file compiles successfully. In general, prefer ``compile`` tests over ``verify`` tests,
355+
subject to the specific recommendations, below, for when to write ``verify`` tests.
356356
* - ``FOO.compile.pass.mm``
357357
- Same as ``FOO.compile.pass.cpp``, but for Objective-C++.
358358
* - ``FOO.compile.fail.cpp``
359359
- Checks that the code in the file does *not* compile successfully.
360360

361361
* - ``FOO.verify.cpp``
362362
- Compiles with clang-verify. This type of test is automatically marked as UNSUPPORTED if the compiler does not support clang-verify.
363-
For additional information about how to write `verify` tests, see the `Internals Manual <https://clang.llvm.org/docs/InternalsManual.html#verifying-diagnostics>`_.
364-
Prefer `verify` tests over `compile` tests to test that compilation fails for a particular reason. For example, use a `verify` test
363+
For additional information about how to write ``verify`` tests, see the `Internals Manual <https://clang.llvm.org/docs/InternalsManual.html#verifying-diagnostics>`_.
364+
Prefer `verify` tests over ``compile`` tests to test that compilation fails for a particular reason. For example, use a ``verify`` test
365365
to ensure that
366366

367367
* an expected ``static_assert`` is triggered;

0 commit comments

Comments
 (0)