diff options
author | Camil Staps | 2017-11-22 11:19:41 +0100 |
---|---|---|
committer | Camil Staps | 2017-11-22 11:19:41 +0100 |
commit | f74dd82111c0f50fc7b1a222c796d258e82281fb (patch) | |
tree | 211974c5f39453853169d7f4fdfabc8783a44490 /test.sh | |
parent | Test setup (diff) |
Resolve run-time error for functions that use arguments twice further down the expression graph
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ SUCCESS=true while IFS=$'\t' read -r req res; do outcome="$(./pf -nt "$req" | grep Result | cut -d' ' -f3-)" if [ "$res" != "$outcome" ]; then - echo "Test failed: $req" + echo "Test failed: $req" echo "Expected result: $res" echo "Actual result: $outcome" SUCCESS=false |