aboutsummaryrefslogtreecommitdiff
path: root/scripts/test/expr.test
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test/expr.test')
-rw-r--r--scripts/test/expr.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/test/expr.test b/scripts/test/expr.test
deleted file mode 100644
index cce7d9d0..00000000
--- a/scripts/test/expr.test
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-[ -f testing.sh ] && . testing.sh
-
-testing "expr integer" "expr 5" "5\n" "" ""
-testing "expr integer negative" "expr -5" "-5\n" "" ""
-testing "expr string" "expr astring" "astring\n" "" ""
-testing "expr 1 + 3" "expr 1 + 3" "4\n" "" ""
-testing "expr 5 + 6 * 3" "expr 5 + 6 \* 3" "23\n" "" ""
-testing "expr ( 5 + 6 ) * 3" "expr \( 5 + 6 \) \* 3" "33\n" "" ""