summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run_tests.sh')
-rw-r--r--run_tests.sh71
1 files changed, 70 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 42f21cb..3ef76f0 100644
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -129,9 +129,78 @@ run_test "./math-int if_gt 5 6 0"
run_test "./math-int if_gt -20 10 0"
# x < y and abs(x) > y
run_test "./math-int if_gt -5 8 0"
-# x > y, but x < abs(x)
+# x > y, but x < abs(y)
run_test "./math-int if_gt 12 -15 1"
# x > y and x > abs(y)
run_test "./math-int if_gt 16 -3 1"
+################################################################################
+#if (x >= y) #
+################################################################################
+
+#True (x > y)
+run_test "./math-int if_ge 8 7 1"
+#True (x == y)
+run_test "./math-int if_ge 10 10 1"
+#False (x < y)
+run_test "./math-int if_ge 20 30 0"
+#True (x > y), but x < abs(y)
+run_test "./math-int if_ge 3 -8 1"
+#False (x < y), but abs(x) == y
+run_test "./math-int if_ge -5 5 0"
+#False (x < y), but abs(x) > y
+run_test "./math-int if_ge -20 10 0"
+
+################################################################################
+#if (x == y) #
+################################################################################
+
+#True
+run_test "./math-int if_eq 21 21 1"
+#False
+run_test "./math-int if_eq 30 18 0"
+#False, but abs(x) == y
+run_test "./math-int if_eq -12 12 0"
+#False, but x == abs(y)
+run_test "./math-int if_eq 81 -81 0"
+
+################################################################################
+#if (x < y) #
+################################################################################
+
+#True
+run_test "./math-int if_lt 2 10 1"
+#True, but abs(x) > y
+run_test "./math if_lt -20 3 1"
+#False
+run_test "./math-int if_lt 15 3 0"
+
+################################################################################
+#if (x <= y) #
+################################################################################
+
+#True
+run_test "./math-int if_le 20 25 1"
+#True x == y
+run_test "./mat-int if_le 18 18 1"
+#True, but abs(x) > y
+run_test "./math-int if_le -10 5 1"
+#False
+run_test "./math-int if_le 18 9 0"
+#False, but x < abs(y)
+run_test "./math-int if_le 10 -20 0"
+
+################################################################################
+#if (x != y) #
+################################################################################
+
+#True
+run_test "./math-int if_ne 10 9 1"
+#True, but abs(x) == y
+run_test "./math-int if_ne -20 20 1"
+#True, but x == abs(y)
+run_test "./math-int if_ne 31 -31 1"
+#False
+run_test "./math-int if_ne 3 3 0"
+
echo "$PASS passes, $FAIL fails"