blob: 8912c419a4a542a22a592921bb5c58d0097dd72f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -ev
if [ -z "$ERL_TOP" ]; then
ERL_TOP=$(pwd)
fi
cd $ERL_TOP/release/tests/test_server
$ERL_TOP/bin/erl -s ts install -s ts smoke_test batch -s init stop
if grep -q '=failed *[1-9]' ct_run.test_server@*/*/run.*/suite.log; then
echo "One or more tests failed."
exit 1
fi
|