mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
TESTBED: Fix "if" formatting.
This commit is contained in:
parent
18ab9a1ef1
commit
571fa94310
@ -1028,7 +1028,7 @@ TestExitStatus GFXtests::paletteRotation() {
|
||||
GFXTestSuite::setCustomColor(255, 0, 0);
|
||||
Testsuite::clearScreen();
|
||||
|
||||
if(Testsuite::handleInteractiveInput("Did you see a rotation in colors of rectangles displayed on screen?", "Yes", "No", kOptionRight)) {
|
||||
if (Testsuite::handleInteractiveInput("Did you see a rotation in colors of rectangles displayed on screen?", "Yes", "No", kOptionRight)) {
|
||||
return kTestFailed;
|
||||
}
|
||||
|
||||
@ -1121,7 +1121,7 @@ TestExitStatus GFXtests::pixelFormats() {
|
||||
g_system->updateScreen();
|
||||
g_system->delayMillis(500);
|
||||
|
||||
if(Testsuite::handleInteractiveInput("Were you able to notice the colored rectangles on the screen for this format?", "Yes", "No", kOptionLeft)) {
|
||||
if (Testsuite::handleInteractiveInput("Were you able to notice the colored rectangles on the screen for this format?", "Yes", "No", kOptionLeft)) {
|
||||
numPassed++;
|
||||
} else {
|
||||
numFailed++;
|
||||
|
@ -289,7 +289,7 @@ void Testsuite::execute() {
|
||||
continue;
|
||||
}
|
||||
|
||||
if((*i)->isInteractive && !ConfParams.isSessionInteractive()) {
|
||||
if ((*i)->isInteractive && !ConfParams.isSessionInteractive()) {
|
||||
logPrintf("Info! Skipping Test: %s, non-interactive environment is selected\n", ((*i)->featureName).c_str());
|
||||
_numTestsSkipped++;
|
||||
continue;
|
||||
|
Loading…
x
Reference in New Issue
Block a user