[Scummvm-git-logs] scummvm master -> 05511e17ec310042eec2caf76f0b7f87ac7a2659

ccawley2011 ccawley2011 at gmail.com
Mon Jul 1 23:50:10 CEST 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
05511e17ec TESTBED: Correctly reset the number of skipped tests


Commit: 05511e17ec310042eec2caf76f0b7f87ac7a2659
    https://github.com/scummvm/scummvm/commit/05511e17ec310042eec2caf76f0b7f87ac7a2659
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2019-07-01T22:49:42+01:00

Commit Message:
TESTBED: Correctly reset the number of skipped tests

Changed paths:
    engines/testbed/testsuite.cpp


diff --git a/engines/testbed/testsuite.cpp b/engines/testbed/testsuite.cpp
index 2804dfa..9b935ed 100644
--- a/engines/testbed/testsuite.cpp
+++ b/engines/testbed/testsuite.cpp
@@ -92,6 +92,7 @@ Testsuite::~Testsuite() {
 void Testsuite::reset() {
 	_numTestsPassed = 0;
 	_numTestsExecuted = 0;
+	_numTestsSkipped = 0;
 	_toQuit = kLoopNormal;
 	for (Common::Array<Test *>::iterator i = _testsToExecute.begin(); i != _testsToExecute.end(); ++i) {
 		(*i)->passed = false;





More information about the Scummvm-git-logs mailing list