view tests/expr.test @ 1650:a740a876c76c draft

Cleanup pass on printf. Alas, passing a union as the last argument to printf does not appear to work reliably, and there's no obvious way to manually assemble varargs in a portable manner. So I have to repeat the printf once for each data type. Oh well.
author Rob Landley <rob@landley.net>
date Sun, 11 Jan 2015 01:22:36 -0600
parents d5931155cafe
children
line wrap: on
line source

#!/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" "" ""
testing "expr * / same priority" "expr 4 \* 3 / 2"  "6\n" "" ""
testing "expr / * same priority" "expr 3 / 2 \* 4" "4\n" "" ""
testing "expr & before |" "expr 0 \| 1 \& 0" "0\n" "" ""
testing "expr | after &" "expr 1 \| 0 \& 0" "1\n" "" ""
testing "expr | & same priority" "expr 0 \& 0 \| 1" "1\n" "" ""
testing "expr % * same priority" "expr 3 % 2 \* 4" "4\n" "" ""
testing "expr * % same priority" "expr 3 \* 2 % 4" "2\n" "" ""
testing "expr = > same priority" "expr 0 = 2 \> 3" "0\n" "" ""
testing "expr > = same priority" "expr 3 \> 2 = 1" "1\n" "" ""
testing "expr string becomes integer" "expr ab21xx : '[^0-9]*\([0-9]*\)' + 3" \
	"24\n" "" ""