You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libcxx/docs/TestingLibcxx.rst
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -351,17 +351,17 @@ Test Filenames`_ when determining the names for new test files.
351
351
- Same as ``FOO.pass.cpp``, but for Objective-C++.
352
352
353
353
* - ``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.
356
356
* - ``FOO.compile.pass.mm``
357
357
- Same as ``FOO.compile.pass.cpp``, but for Objective-C++.
358
358
* - ``FOO.compile.fail.cpp``
359
359
- Checks that the code in the file does *not* compile successfully.
360
360
361
361
* - ``FOO.verify.cpp``
362
362
- 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
0 commit comments