From bdf22db679aa9772b4517fa3829990f2c4d238c2 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 5 May 2013 12:47:44 +0200 Subject: [PATCH] Corrected spelling in C source files of test suites. --- test/testautomation_clipboard.c | 2 +- test/testautomation_main.c | 2 +- test/testautomation_mouse.c | 2 +- test/testautomation_sdltest.c | 2 +- test/testautomation_timer.c | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/testautomation_clipboard.c b/test/testautomation_clipboard.c index 858b22bc8..76c2936f8 100644 --- a/test/testautomation_clipboard.c +++ b/test/testautomation_clipboard.c @@ -96,7 +96,7 @@ clipboard_testClipboardTextFunctions(void *arg) SDLTest_AssertPass("Call to SDL_HasClipboardText succeeded"); if (boolResult == SDL_TRUE) { intResult = SDL_SetClipboardText((const char *)NULL); - SDLTest_AssertPass("Call to DL_SetClipboardText(NULL) succeeded"); + SDLTest_AssertPass("Call to SDL_SetClipboardText(NULL) succeeded"); SDLTest_AssertCheck( intResult == 0, "Verify result from SDL_SetClipboardText(NULL), expected 0, got %i", diff --git a/test/testautomation_main.c b/test/testautomation_main.c index 6a40acc70..9873c7e41 100644 --- a/test/testautomation_main.c +++ b/test/testautomation_main.c @@ -76,7 +76,7 @@ static int main_testImpliedJoystickInit (void *arg) initialized_system = SDL_WasInit(joy_and_controller); SDLTest_AssertCheck( (initialized_system & joy_and_controller) == joy_and_controller, "SDL_WasInit() should be true for joystick & controller (%x)", initialized_system ); - // Then quit the controller, and make sure that imlicity also quits the + // Then quit the controller, and make sure that implicitly also quits the // joystick subsystem SDL_QuitSubSystem(SDL_INIT_GAMECONTROLLER); initialized_system = SDL_WasInit(joy_and_controller); diff --git a/test/testautomation_mouse.c b/test/testautomation_mouse.c index 69d82dd09..e0fd6fae6 100644 --- a/test/testautomation_mouse.c +++ b/test/testautomation_mouse.c @@ -403,7 +403,7 @@ mouse_getSetRelativeMouseMode(void *arg) SDLTest_AssertPass("Call to SDL_GetRelativeMouseMode()"); SDLTest_AssertCheck(currentState == SDL_FALSE, "Validate current state is FALSE, got: %i", currentState); - /* Revert to originl state - ignore result */ + /* Revert to original state - ignore result */ result = SDL_SetRelativeMouseMode(initialState); return TEST_COMPLETED; diff --git a/test/testautomation_sdltest.c b/test/testautomation_sdltest.c index fc9a13c86..b51721b05 100644 --- a/test/testautomation_sdltest.c +++ b/test/testautomation_sdltest.c @@ -1169,7 +1169,7 @@ sdltest_randomAsciiStringOfSize(void *arg) nonAsciiCharacters++; } } - SDLTest_AssertCheck(nonAsciiCharacters == 0, "Validate that result does not contain non-Ascii characters, got: %d", nonAsciiCharacters); + SDLTest_AssertCheck(nonAsciiCharacters == 0, "Validate that result does not contain non-ASCII characters, got: %d", nonAsciiCharacters); if (nonAsciiCharacters) { SDLTest_LogError("Invalid result from generator: '%s'", result); } diff --git a/test/testautomation_timer.c b/test/testautomation_timer.c index 17f2f65e1..03c1aeaa6 100644 --- a/test/testautomation_timer.c +++ b/test/testautomation_timer.c @@ -90,7 +90,7 @@ timer_delayAndGetTicks(void *arg) SDLTest_AssertPass("Call to SDL_GetTicks()"); SDLTest_AssertCheck(result > 0, "Check result value, expected: >0, got: %d", result); - /* Delay a bit longer and mesure ticks and verify difference */ + /* Delay a bit longer and measure ticks and verify difference */ SDL_Delay(testDelay); SDLTest_AssertPass("Call to SDL_Delay(%d)", testDelay); result2 = SDL_GetTicks(); @@ -144,7 +144,7 @@ timer_addRemoveTimer(void *arg) SDLTest_AssertCheck(result == SDL_TRUE, "Check result value, expected: %i, got: %i", SDL_TRUE, result); SDLTest_AssertCheck(_timerCallbackCalled == 0, "Check callback WAS NOT called, expected: 0, got: %i", _timerCallbackCalled); - /* Try to temove timer again (should be a NOOP) */ + /* Try to remove timer again (should be a NOOP) */ result = SDL_RemoveTimer(id); SDLTest_AssertPass("Call to SDL_RemoveTimer()"); SDLTest_AssertCheck(result == SDL_FALSE, "Check result value, expected: %i, got: %i", SDL_FALSE, result);