diff options
author | Rob Landley <rob@landley.net> | 2013-06-05 00:59:01 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-06-05 00:59:01 -0500 |
commit | 32526f25a7e62b1fe82d1ea30dc4a8506d0ee0d4 (patch) | |
tree | 16652da577108ad1dfff485c6ce5f91bc6e4c7a7 /scripts | |
parent | cfb4c488eeeae92aaf075b7181f4e1e6367c06e8 (diff) | |
download | toybox-32526f25a7e62b1fe82d1ea30dc4a8506d0ee0d4.tar.gz |
Start of expr, by Daniel Verkamp.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/test/expr.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/test/expr.test b/scripts/test/expr.test new file mode 100644 index 00000000..cce7d9d0 --- /dev/null +++ b/scripts/test/expr.test @@ -0,0 +1,10 @@ +#!/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" "" "" |