summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/miscellaneous/GetLastError/test1/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/miscellaneous/GetLastError/test1/test.cpp')
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetLastError/test1/test.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/miscellaneous/GetLastError/test1/test.cpp b/src/pal/tests/palsuite/miscellaneous/GetLastError/test1/test.cpp
new file mode 100644
index 0000000000..65f56e595f
--- /dev/null
+++ b/src/pal/tests/palsuite/miscellaneous/GetLastError/test1/test.cpp
@@ -0,0 +1,63 @@
+// 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 : test.c
+**
+** Purpose: Test for GetLastError() function
+**
+**
+**=========================================================*/
+
+/* Depends on SetLastError() */
+
+#include <palsuite.h>
+
+/**
+ * Helper functions that does the actual test
+ */
+static void test(DWORD error )
+{
+ DWORD TheResult;
+
+ /* Set error */
+ SetLastError(error);
+
+ /* Check to make sure it returns the error value we just set */
+ TheResult = GetLastError();
+ if(TheResult!= error)
+ {
+ Fail("ERROR: The last error should have been %u, but when "
+ "GetLastError was called, it returned %u.\n",error,TheResult);
+ }
+
+}
+
+int __cdecl main(int argc, char *argv[]) {
+
+
+ /*
+ * Initialize the PAL and return FAILURE if this fails
+ */
+
+ if(0 != (PAL_Initialize(argc, argv)))
+ {
+ return FAIL;
+ }
+
+ /* test setting and getting some values */
+ test(5);
+ test(0xffffffff);
+ test(0xEEEEEEEE);
+ test(0xAAAAAAAA);
+
+ PAL_Terminate();
+ return PASS;
+}
+
+
+
+
+