summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/samples/test1/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/samples/test1/test.cpp')
-rw-r--r--src/pal/tests/palsuite/samples/test1/test.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/samples/test1/test.cpp b/src/pal/tests/palsuite/samples/test1/test.cpp
new file mode 100644
index 0000000000..2eed6f6f44
--- /dev/null
+++ b/src/pal/tests/palsuite/samples/test1/test.cpp
@@ -0,0 +1,41 @@
+// 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: This test is an example of the basic structure of a PAL test
+** suite test case.
+**
+**
+**==========================================================================*/
+
+#include <palsuite.h>
+
+int __cdecl main(int argc, char **argv)
+{
+ /* Initialize the PAL.
+ */
+ if(0 != PAL_Initialize(argc, argv))
+ {
+ return FAIL;
+ }
+
+ Trace("\nTest #1...\n");
+
+#ifdef WIN32
+ Trace("\nWe are testing under Win32 environment.\n");
+#else
+ Trace("\nWe are testing under Non-Win32 environment.\n");
+#endif
+
+ Trace("\nThis test has passed.\n");
+
+ /* Shutdown the PAL.
+ */
+ PAL_Terminate();
+
+ return PASS;
+}