summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/threading/SetErrorMode/test1/test1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/threading/SetErrorMode/test1/test1.cpp')
-rw-r--r--src/pal/tests/palsuite/threading/SetErrorMode/test1/test1.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/threading/SetErrorMode/test1/test1.cpp b/src/pal/tests/palsuite/threading/SetErrorMode/test1/test1.cpp
new file mode 100644
index 0000000000..238cec4421
--- /dev/null
+++ b/src/pal/tests/palsuite/threading/SetErrorMode/test1/test1.cpp
@@ -0,0 +1,50 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+/*=====================================================================
+**
+** Source: test1.c (SetErrorMode)
+**
+** Purpose: Tests the PAL implementation of the SetErrorMode function.
+** This test will set the error mode and then read the error
+** set with GetLastError().
+**
+**
+**===================================================================*/
+
+#include <palsuite.h>
+
+int __cdecl main(int argc, char **argv)
+{
+ DWORD dErrorReturn;
+ UINT dErrorModes[] = {SEM_NOOPENFILEERRORBOX, SEM_FAILCRITICALERRORS, 0};
+ int i;
+
+ /*
+ * Initialize the Pal
+ */
+ if ((PAL_Initialize(argc,argv)) != 0)
+ {
+ return (FAIL);
+ }
+
+ /*
+ * Loop through the supported Error Modes and verify
+ * that GetLastError() returns the correct Error Mode
+ */
+ for (i=0; i < (sizeof(dErrorModes) / sizeof(UINT)); i++)
+ {
+ SetLastError(dErrorModes[i]);
+ if ((dErrorReturn = GetLastError()) != dErrorModes[i])
+ {
+ Fail("ERROR: SetLastError was set to 0x%4.4x but,"
+ " GetLastError returned 0x%4.4x\n",
+ dErrorModes[i],
+ dErrorReturn);
+ }
+ }
+
+ PAL_Terminate();
+ return (PASS);
+}