blob: a69e2134d454a58db7595acc92c8429ed223cc27 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
function test_exit_code() {
cat > main.c
"$ducc" -o a.out main.c
set +e
./a.out
exit_code=$?
set -e
expected=$1
if [[ $exit_code -ne $expected ]]; then
echo "invalid exit code: expected $expected, but got $exit_code" >&2
exit 1
fi
}
function test_diff() {
cat > main.c
"$ducc" -o a.out main.c
if [[ ! -f input ]]; then
touch input
fi
./a.out "$@" < input > output
exit_code=$?
if [[ $exit_code -ne 0 ]]; then
echo "invalid exit code: $exit_code" >&2
exit 1
fi
diff -u expected output
}
function test_compile_error() {
cat > main.c
set +e
"$ducc" main.c > /dev/null 2> output
exit_code=$?
set -e
if [[ $exit_code -eq 0 ]]; then
echo "expected to fail" >&2
exit 1
fi
diff -u expected output
}
function test_cpp() {
cat > main.c
"$ducc" -E main.c > output
diff -u -Z expected output
}
function test_example() {
filename="../../../examples/$1.c"
"$ducc" -o a.out "$filename"
if [[ ! -f input ]]; then
touch input
fi
./a.out "$@" < input > output
exit_code=$?
if [[ $exit_code -ne 0 ]]; then
echo "invalid exit code: $exit_code" >&2
exit 1
fi
diff -u expected output
}
|