summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/samples/test2/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/samples/test2/test.cpp')
-rw-r--r--src/pal/tests/palsuite/samples/test2/test.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/samples/test2/test.cpp b/src/pal/tests/palsuite/samples/test2/test.cpp
new file mode 100644
index 0000000000..53d4158b9d
--- /dev/null
+++ b/src/pal/tests/palsuite/samples/test2/test.cpp
@@ -0,0 +1,48 @@
+// 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: A sample to show how to structure a test case.
+**
+**
+**===================================================================*/
+
+#include <palsuite.h>
+
+int __cdecl main(int argc, char **argv)
+{
+ int exampleInt = 9;
+
+ /* Initialize the PAL.
+ */
+ if(0 != PAL_Initialize(argc, argv))
+ {
+ return FAIL;
+ }
+
+
+ Trace("\nTest #2...\n");
+
+#ifdef WIN32
+ Trace("\nWe are testing under Win32 environment.\n");
+#else
+ Trace("\nWe are testing under Non-Win32 environment.\n");
+#endif
+
+ if (exampleInt == 9)
+ {
+ Fail("This is an example to how to code a failure. "
+ "This failure was caused by exampleInt equalling %d\n",
+ exampleInt);
+ }
+
+ /* Shutdown the PAL.
+ */
+ PAL_Terminate();
+
+ return PASS;
+}