aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_output.sh
blob: 2c8fb297f86f3b5a6dd14c57be55d82666b2edb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cat > main.c

"$p4dcc" < main.c > main.s
if [[ $? -ne 0 ]]; then
    cat main.s >&2
    exit 1
fi
gcc -Wl,-z,noexecstack -o a.out main.s
output="$(./a.out)"
exit_code=$?

if [[ $exit_code -ne 0 ]]; then
    echo "invalid exit code: $exit_code" >&2
    exit 1
fi

expected="$1"

if [[ "$output" != "$expected" ]]; then
    echo "invalid output: expected '$expected', but got '$output'" >&2
    exit 1
fi