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: demo/README.md
+1-27Lines changed: 1 addition & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,7 @@ Skipping Tests
115
115
--------------
116
116
When a test is known to cause a compile-time or runtime crash in a specific scenario, e.g., with a specific compiler or compiler version, including that test will prevent the test suite from building or running to completion.
117
117
It can be useful to skip a test with the problematic compiler but to report the test as skipped and account for the skipped tests in the tally of test results.
118
-
For this purpose, the `test_description_t`and `vector_test_description_t`constructor functions have optional second arguments `diagnosis_function`and `vector_diagnosis_function`, respectively.
118
+
For this purpose, the `test_description_t` constructor function has a `diagnosis_function`argument that is optional.
119
119
When these arguments are not `present`, the `test_t`'s `report` procedure will report the test as skipped but will terminate normally as long as the sum of the passing tests and skipped tests equals the total number of tests.
120
120
One might accomplish this with the compiler's predefined preprocessor macro:
121
121
```
@@ -159,29 +159,3 @@ class string_t{
159
159
base_name(string_t) string_t
160
160
}
161
161
```
162
-
163
-
Deprecated: Vector Diagnosis Function
164
-
-------------------------------------
165
-
Julienne's `vector_diagnosis_function_i` abstract interface and the corresponding `vector_test_description_t` type were developed before Julienne's `operator(.all.)` and `operator(.and.)`.
166
-
Because the operators replace the interface and type with simpler functionality, it is likely that a future release will remove the `vector_*` entities.
167
-
168
-
The Unified Modeling Language ([UML](https://wikipedia.org/Unified_modeling_language)) class diagram below depicts the class relationships involved when test function performs multiple checks and defines a result containing an array of corresponding `test_diagnosis_t` objects:
0 commit comments