Huw Davies : ntdll/tests: Fix spelling of succeeded.

Alexandre Julliard julliard at winehq.org
Wed Nov 4 10:26:26 CST 2009


Module: wine
Branch: master
Commit: 95c525e21ba47c2c4260a0ee8ee2b058939c9a09
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=95c525e21ba47c2c4260a0ee8ee2b058939c9a09

Author: Huw Davies <huw at codeweavers.com>
Date:   Wed Nov  4 11:30:47 2009 +0000

ntdll/tests: Fix spelling of succeeded.

---

 dlls/ntdll/tests/exception.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c
index f693960..9149b69 100644
--- a/dlls/ntdll/tests/exception.c
+++ b/dlls/ntdll/tests/exception.c
@@ -1010,7 +1010,7 @@ static void test_dpe_exceptions(void)
         /* Try access to locked page with DEP on*/
         info.exception_caught = FALSE;
         run_exception_test(dpe_exception_handler, &info, single_ret, sizeof(single_ret), PAGE_NOACCESS);
-        ok(info.exception_caught == TRUE, "Execution of disabled memory suceeded\n");
+        ok(info.exception_caught == TRUE, "Execution of disabled memory succeeded\n");
         ok(info.exception_info == EXCEPTION_READ_FAULT ||
            info.exception_info == EXCEPTION_EXECUTE_FAULT,
               "Access violation type: %08x\n", (unsigned)info.exception_info);
@@ -1022,7 +1022,7 @@ static void test_dpe_exceptions(void)
         run_exception_test(dpe_exception_handler, &info, single_ret, sizeof(single_ret), PAGE_READWRITE);
         if(has_hw_support)
         {
-            ok(info.exception_caught == TRUE, "Execution of data memory suceeded\n");
+            ok(info.exception_caught == TRUE, "Execution of data memory succeeded\n");
             ok(info.exception_info == EXCEPTION_EXECUTE_FAULT,
                   "Access violation type: %08x\n", (unsigned)info.exception_info);
         }
@@ -1052,7 +1052,7 @@ static void test_dpe_exceptions(void)
            with hardware DEP on */
         info.exception_caught = FALSE;
         run_exception_test(dpe_exception_handler, &info, single_ret, sizeof(single_ret), PAGE_NOACCESS);
-        ok(info.exception_caught == TRUE, "Execution of disabled memory suceeded\n");
+        ok(info.exception_caught == TRUE, "Execution of disabled memory succeeded\n");
         ok(info.exception_info == EXCEPTION_READ_FAULT,
               "Access violation type: %08x\n", (unsigned)info.exception_info);
     }




More information about the wine-cvs mailing list