aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2015-06-25 01:38:18 +0200
committerSimon Warta <[email protected]>2015-06-25 01:38:18 +0200
commit412ef6d4ed31ecdc6c60f05cd2dba1187401f08c (patch)
treee9c7f9533f87e9970a609e45dd88cbe93db1145b
parent18bf2bacad303cb3ed2aa19367c6ba6a3f3041bd (diff)
Add missing test report for TSS tests
-rw-r--r--src/tests/test_tss.cpp2
-rw-r--r--src/tests/tests.cpp1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/tests/test_tss.cpp b/src/tests/test_tss.cpp
index 36f075c54..fad85f93c 100644
--- a/src/tests/test_tss.cpp
+++ b/src/tests/test_tss.cpp
@@ -48,6 +48,8 @@ size_t test_tss()
++fails;
}
+ test_report("TSS", 2, fails);
+
return fails;
}
#else
diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp
index 14588cf0d..539737437 100644
--- a/src/tests/tests.cpp
+++ b/src/tests/tests.cpp
@@ -55,6 +55,7 @@ size_t run_tests(const std::vector<test_fn>& tests)
}
}
+ // Summary for test suite
test_report("Tests", 0, fails);
return fails;