aboutsummaryrefslogtreecommitdiff
path: root/travis/csa
diff options
context:
space:
mode:
authorMike Taves <mwtoews@gmail.com>2019-04-05 12:56:58 +1300
committerMike Taves <mwtoews@gmail.com>2019-04-05 17:47:15 +1300
commit2c28ca1798cb24b803c44ceebd34bb3f15822c87 (patch)
tree5a8ed6d5be8792c145101a3474b73228b58247c5 /travis/csa
parent1e2e512f9a671df504f6f01eee53dc26939b3c0a (diff)
downloadPROJ-2c28ca1798cb24b803c44ceebd34bb3f15822c87.tar.gz
PROJ-2c28ca1798cb24b803c44ceebd34bb3f15822c87.zip
Adjust test outputs
- Tests should use unified diff with expected results - Show CMake build compile commands (VERBOSE=1) - Travis CI only has two cores, so "-j2" is sufficent
Diffstat (limited to 'travis/csa')
-rwxr-xr-xtravis/csa/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/travis/csa/install.sh b/travis/csa/install.sh
index 301aead9..12a1bf6d 100755
--- a/travis/csa/install.sh
+++ b/travis/csa/install.sh
@@ -6,6 +6,6 @@ set -e
./autogen.sh
CXXFLAGS="-std=c++11" ./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/bin/scan-build -o scanbuildoutput -plist -v ./configure
-./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/bin/scan-build -o scanbuildoutput -plist -v make -j3
+./clang+llvm-6.0.0-x86_64-linux-gnu-ubuntu-14.04/bin/scan-build -o scanbuildoutput -plist -v make -j2
if grep -r "\.c" scanbuildoutput | grep "<string>" | grep -v -e "<key>" -e _generated_parser; then echo "error" && /bin/false; else echo "ok"; fi