-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxargs.py_test
executable file
·38 lines (34 loc) · 946 Bytes
/
xargs.py_test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh
cd "$(realpath "$(dirname "$0")")"
if [ $# -eq 0 ]
then set -- "$PWD"/xargs.py_test_input/*/
fi
eval 'xargs_py() {' "$(realpath ./xargs.py)" '"$@";' '}'
for test
do
args="$test/args"
stdin="$test/stdin"
stdout="_tmp/$(basename "$test")_stdout"
stderr="_tmp/$(basename "$test")_stderr"
eval xargs $(cat "$args") <"$stdin" >"${stdout}_expected" 2>/dev/null &
eval xargs_py $(cat "$args") <"$test/stdin" >"${stdout}_actual" 2>"$stderr"
rc_actual=$?
wait %1
rc_expected=$?
if ! cmp -s "${stdout}_expected" "${stdout}_actual"
then
echo "!!! $(basename "$test") failed: files differ"
echo "--- EXPECTED ---"
cat "${stdout}_expected"
echo "---- ACTUAL ----"
cat "${stdout}_actual"
echo "----------------"
cat "$stderr"
elif [ $rc_expected != $rc_actual ]
then
echo "!!! $(basename "$test") failed: rcs differ"
echo "EXPECTED=$rc_expected ACTUAL=$rc_actual"
else
echo " $(basename "$test") ok"
fi
done