aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_exit_code.sh
blob: f69e862b779846df9c6cf3a834fbc98ea58e1d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
./a.out
exit_code=$?

expected=$1

if [[ ! $exit_code -eq $expected ]]; then
    echo "expected $expected, but $exit_code" >&2
    exit 1
fi