1#!/bin/bash 2 3set -e 4 5rm -rf build.paho 6mkdir build.paho 7cd build.paho 8echo "travis build dir $TRAVIS_BUILD_DIR pwd $PWD" 9cmake .. 10make 11python ../test/mqttsas2.py localhost 1883 1885 & 12ctest -VV --timeout 600 13kill %1 14killall mosquitto 15