1#!/bin/bash 2# 3# $1: path to minimal example binaries... 4# if lws is built with -DLWS_WITH_MINIMAL_EXAMPLES=1 5# that will be ./bin from your build dir 6# 7# $2: path for logs and results. The results will go 8# in a subdir named after the directory this script 9# is in 10# 11# $3: offset for test index count 12# 13# $4: total test count 14# 15# $5: path to ./minimal-examples dir in lws 16# 17# Test return code 0: OK, 254: timed out, other: error indication 18 19. $5/selftests-library.sh 20 21COUNT_TESTS=8 22 23dotest $1 $2 warmcat 24dotest $1 $2 warmcat-h1 --h1 25dotest $1 $2 warmcat-m -m 26dotest $1 $2 warmcat-m-h1 -m --h1 27 28spawn "" $5 $1/libwebsockets-test-server -s 29dotest $1 $2 localhost -l -d1151 30spawn $SPID $5 $1/libwebsockets-test-server -s 31dotest $1 $2 localhost-h1 -l --h1 32spawn $SPID $5 $1/libwebsockets-test-server -s 33dotest $1 $2 localhost-m -l -m 34spawn $SPID $5 $1/libwebsockets-test-server -s 35dotest $1 $2 localhost-m-h1 -l -m --h1 36 37kill $SPID 2>/dev/null 38wait $SPID 2>/dev/null 39exit $FAILS 40