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