aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/003.sh
blob: 77a3886961afd41a8bc02a0d7e907cbbe109af15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cat <<'EOF' > main.c
int main() {
    return 2*3+4*5;
}
EOF

"$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=26

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