chiark / gitweb /
Licence: Add copyright and licence statement to many files
[cgi-auth-flexible.git] / tests / run-all
1 #!/bin/sh
2
3 # This is part of CGI::Auth::Flexible, a perl CGI authentication module.
4 #
5 # Copyright 2012,2013,2015 Ian Jackson.
6 # Copyright 2012,2013,2015 Citrix.
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version, with the "CAF Login Exception"
12 # as published by Ian Jackson (version 1, or at your option any 
13 # later version) as an Additional Permission.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU Affero General Public License for more details.
19
20 set -e
21 make=`type gmake >/dev/null 2>&1 && echo gmake || echo make`
22 if [ $# = 0 ]; then
23         ncpus=`
24                 perl -e 'use Sys::CPU; print Sys::CPU::cpu_count()' \
25                         2>/dev/null \
26                 || echo 1
27         `
28         set -- -j$(( $ncpus * 2 ))
29 fi
30 x () {
31         echo >&2 "$*"
32         "$@"
33 }
34 x $make -C tests "$@"
35 echo all ok.