11 lines
126 B
Plaintext
11 lines
126 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
./test-alloc >/dev/null 2>&1
|
||
|
|
|
||
|
|
if [ $? -eq 0 ]; then
|
||
|
|
echo "PASS: test-alloc"
|
||
|
|
else
|
||
|
|
echo "FAIL: test-alloc"
|
||
|
|
fi
|
||
|
|
|