]> git.ipfire.org Git - thirdparty/squid.git/blob - test-builds.sh
TestBed: Add master test scripts and some control files
[thirdparty/squid.git] / test-builds.sh
1 # #!/bin/bash
2 #
3 # Run specific build tests for a given OS environment.
4 #
5
6 if test -f "./test-suite/buildtests/os-${1}.opts" ; then
7 echo "TESTING: ${1}"
8 ./test-suite/buildtest.sh ./test-suite/buildtests/os-${1}
9 fi
10
11 #
12 # Run specific tests for each combination of configure-time
13 # Options.
14 #
15 # These layers are constructed from detailed knowledge of
16 # component dependencies.
17 #
18
19 for f in `ls -1 ./test-suite/buildtests/layer*.opts` ; do
20 echo "TESTING: ${f/.opts}"
21 ./test-suite/buildtest.sh ${f/.opts}
22 done