Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/tests/test-3.cs')
-rwxr-xr-xmcs/tests/test-3.cs62
1 files changed, 0 insertions, 62 deletions
diff --git a/mcs/tests/test-3.cs b/mcs/tests/test-3.cs
deleted file mode 100755
index 5e7d4e1fab2..00000000000
--- a/mcs/tests/test-3.cs
+++ /dev/null
@@ -1,62 +0,0 @@
-
-public class TestIntOps {
-
- public static sbyte sbyte_add (sbyte a, sbyte b) {
- return (sbyte)(a+b);
- }
-
- public static short short_add (short a, short b) {
- return (short)(a+b);
- }
-
- public static double double_add (double a, double b) {
- return a+b;
- }
-
- public static int int_add (int a, int b) {
- return a+b;
- }
-
- public static int int_sub (int a, int b) {
- return a-b;
- }
-
- public static int int_mul (int a, int b) {
- return a*b;
- }
-
- public static int Main() {
- int num = 1;
-
- if (int_add (1, 1) != 2) return num;
- num++;
-
- if (int_add (31, -1) != 30) return num;
- num++;
-
- if (int_sub (31, -1) != 32) return num;
- num++;
-
- if (int_mul (12, 12) != 144) return num;
- num++;
-
- if (sbyte_add (1, 1) != 2) return num;
- num++;
-
- if (sbyte_add (31, -1) != 30) return num;
- num++;
-
- if (short_add (1, 1) != 2) return num;
- num++;
-
- if (short_add (31, -1) != 30) return num;
- num++;
-
- if (double_add (1.5, 1.5) != 3) return num;
- num++;
-
- // add more meaningful tests
-
- return 0;
- }
-}