aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/config.h
diff options
context:
space:
mode:
authorNeeraj Kumar2010-07-27 09:32:19 +0000
committerNeeraj Kumar2010-07-27 09:32:19 +0000
commit26c0547e6741fd57ddce8c2cfcccbe6dd2b54322 (patch)
tree0006bf942b6096636d9e7365e6fb95e6428b6602 /engines/testbed/config.h
parent39780f4a6801091fc680c7d55d2a1f7a0a4356be (diff)
downloadscummvm-rg350-26c0547e6741fd57ddce8c2cfcccbe6dd2b54322.tar.gz
scummvm-rg350-26c0547e6741fd57ddce8c2cfcccbe6dd2b54322.tar.bz2
scummvm-rg350-26c0547e6741fd57ddce8c2cfcccbe6dd2b54322.zip
TESTBED: Updated the progress bar to show count of enabled test/testsuites instead of entire list size
svn-id: r51351
Diffstat (limited to 'engines/testbed/config.h')
-rw-r--r--engines/testbed/config.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/testbed/config.h b/engines/testbed/config.h
index 2ecbf44930..bbab1b9405 100644
--- a/engines/testbed/config.h
+++ b/engines/testbed/config.h
@@ -60,6 +60,8 @@ public:
bool stringToBool(const Common::String str) { return str.equalsIgnoreCase("true") ? true : false; }
Common::String boolToString(bool val) { return val ? "true" : "false"; }
void initDefaultConfiguration();
+ int getNumSuitesEnabled();
+
private:
Common::Array<Testsuite *> &_testsuiteList;
Common::String _configFileName;