summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime/abs/test1/abs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime/abs/test1/abs.cpp')
-rw-r--r--src/pal/tests/palsuite/c_runtime/abs/test1/abs.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/abs/test1/abs.cpp b/src/pal/tests/palsuite/c_runtime/abs/test1/abs.cpp
new file mode 100644
index 0000000000..233a5dcb30
--- /dev/null
+++ b/src/pal/tests/palsuite/c_runtime/abs/test1/abs.cpp
@@ -0,0 +1,54 @@
+// 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: abs.c (test 1)
+**
+** Purpose: Tests the PAL implementation of the abs function.
+**
+**
+**===================================================================*/
+
+#include <palsuite.h>
+
+struct TESTS
+{
+ int nTest;
+ int nResult;
+};
+
+int __cdecl main(int argc, char *argv[])
+{
+ int i = 0;
+ int nRc = 0;
+ struct TESTS testCase[] =
+ {
+ {0, 0},
+ {1, 1},
+ {-1, 1}
+ };
+
+
+ if (0 != PAL_Initialize(argc,argv))
+ {
+ return FAIL;
+ }
+
+ for (i = 0; i < (sizeof(testCase)/sizeof(struct TESTS)); i++)
+ {
+ nRc = abs(testCase[i].nTest);
+ if (nRc != testCase[i].nResult)
+ {
+ Fail("abs: ERROR -> abs(%d) returned %d "
+ "when it was expected to return %d \n",
+ testCase[i].nTest,
+ nRc,
+ testCase[i].nResult);
+ }
+ }
+
+ PAL_Terminate();
+ return PASS;
+}