aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/testbed.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/testbed/testbed.cpp')
-rw-r--r--engines/testbed/testbed.cpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/engines/testbed/testbed.cpp b/engines/testbed/testbed.cpp
index fb70acb9df..789fe7c2ec 100644
--- a/engines/testbed/testbed.cpp
+++ b/engines/testbed/testbed.cpp
@@ -4,6 +4,7 @@
#include "engines/util.h"
#include "testbed/testbed.h"
+#include "testbed/fs.h"
#include "testbed/graphics.h"
namespace Testbed {
@@ -60,16 +61,20 @@ Common::Error TestbedEngine::run() {
"If you see this, it means interactive tests would run on this system :)");
// To be set from config file
- interactive = true;
- Testsuite::displayMessage(prompt, "proceed?");
+ // XXX: disabling these as of now for fastly testing other tests
+ interactive = false;
if (interactive) {
- printf("Running tests in Interactive Mode\n");
+ printf("Running Interactive tests as well\n");
+ Testsuite::displayMessage(prompt, "proceed?");
// Executing GFX Tests
- GFXTestSuite ts;
- ts.execute();
+ GFXTestSuite gts;
+ gts.execute();
}
+ FSTestSuite fts;
+ fts.execute();
+
return Common::kNoError;
}