aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_example.sh
blob: d5feaabd7ca820161e5c32c9f4656fe26cc9c10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
filename="../../../examples/$1.c"

"$ducc" "$filename" > main.s
if [[ $? -ne 0 ]]; then
    exit 1
fi
gcc -Wl,-z,noexecstack -o a.out main.s
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