diff options
author | Jacob Bachmeyer <jcb@gnu.org> | 2022-11-29 22:26:32 -0600 |
---|---|---|
committer | Jacob Bachmeyer <jcb@gnu.org> | 2022-11-29 22:26:32 -0600 |
commit | ebcfc9471dffd3d020d0a62eb049d56e0fff7905 (patch) | |
tree | eb1c3d733211e4e91c307826e1457236e0baac1f /dejagnu.h | |
parent | 9e26e771edd7b365b9ffcb64ca6f119cdb0ae414 (diff) | |
download | dejagnu-ebcfc9471dffd3d020d0a62eb049d56e0fff7905.zip dejagnu-ebcfc9471dffd3d020d0a62eb049d56e0fff7905.tar.gz dejagnu-ebcfc9471dffd3d020d0a62eb049d56e0fff7905.tar.bz2 |
Align C++ TestState::totals() with C totals()
Diffstat (limited to 'dejagnu.h')
-rw-r--r-- | dejagnu.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -262,6 +262,7 @@ class TestState { void totals (void) { + std::cout << std::endl << "Totals:" << std::endl; std::cout << "\t#passed:\t\t" << passed << std::endl; std::cout << "\t#real failed:\t\t" << failed << std::endl; if (xfailed) |