blob: cce7d9d088ed8aa6d23968407bbe847f82326c74 [file] [log] [blame]
Rob Landley32526f22013-06-05 00:59:01 -05001#!/bin/bash
2
3[ -f testing.sh ] && . testing.sh
4
5testing "expr integer" "expr 5" "5\n" "" ""
6testing "expr integer negative" "expr -5" "-5\n" "" ""
7testing "expr string" "expr astring" "astring\n" "" ""
8testing "expr 1 + 3" "expr 1 + 3" "4\n" "" ""
9testing "expr 5 + 6 * 3" "expr 5 + 6 \* 3" "23\n" "" ""
10testing "expr ( 5 + 6 ) * 3" "expr \( 5 + 6 \) \* 3" "33\n" "" ""