Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2017-04-17 23:58:56 +0300
committeronqtam <vik.kirilov@gmail.com>2017-05-16 00:22:21 +0300
commit8c31176a624faf32d4571688015b2fd2b94d1450 (patch)
tree6d8eb05db6fcb3b8979ccce881b6f92e8bae8401 /examples/all_features/test_output/templated_test_cases.cpp.txt
parent7cc0e96bf6c1ab95786fd7a2686f46b0edb5d218 (diff)
fixing builds
- silencing gcc/clang warnings - seems that some compiler versions handle the type lists differently (different order) so I extracted the templated test case with a stringified user type to a separate test case template with just 1 type in it's list
Diffstat (limited to 'examples/all_features/test_output/templated_test_cases.cpp.txt')
-rw-r--r--examples/all_features/test_output/templated_test_cases.cpp.txt15
1 files changed, 12 insertions, 3 deletions
diff --git a/examples/all_features/test_output/templated_test_cases.cpp.txt b/examples/all_features/test_output/templated_test_cases.cpp.txt
index b22ef4a7..0373943e 100644
--- a/examples/all_features/test_output/templated_test_cases.cpp.txt
+++ b/examples/all_features/test_output/templated_test_cases.cpp.txt
@@ -10,7 +10,7 @@ with expansion:
== TEST CASE ==================================================================
templated_test_cases.cpp(0)
-multiple types<bool_int_pair>
+multiple types<>
templated_test_cases.cpp(0) ERROR!
CHECK( T2() != T2() )
@@ -35,7 +35,16 @@ templated_test_cases.cpp(0) ERROR!
with expansion:
CHECK( 0 != 0 )
+== TEST CASE ==================================================================
+templated_test_cases.cpp(0)
+bad stringification of type pair<int_pair>
+
+templated_test_cases.cpp(0) ERROR!
+ CHECK( T2() != T2() )
+with expansion:
+ CHECK( 0 != 0 )
+
===============================================================================
-[doctest] test cases: 12 | 8 passed | 4 failed |
-[doctest] assertions: 15 | 11 passed | 4 failed |
+[doctest] test cases: 14 | 9 passed | 5 failed |
+[doctest] assertions: 18 | 13 passed | 5 failed |
Program code.