aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant_build.sh
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2019-09-20 23:03:31 +0100
committerJoão Valverde <j@v6e.pt>2019-09-20 22:06:21 +0000
commite37a3b9ebf5eebde8238c3e95847522c4c6b9437 (patch)
treeb2b7d7e171d188b7c241182da1c0ef0084e1b463 /vagrant_build.sh
parenta5445705469d2daa152935c96860fcc7d3269b26 (diff)
Vagrant: Fix provisioning script
Add missing `make test-programs` step. Configure the number of make jobs to match the number of vcpus. Change-Id: I3a3547478a4043b46a941267bcfbaaef0fc7e552 Reviewed-on: https://code.wireshark.org/review/34579 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'vagrant_build.sh')
-rw-r--r--vagrant_build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/vagrant_build.sh b/vagrant_build.sh
index cde42e2d79..7542f08fc7 100644
--- a/vagrant_build.sh
+++ b/vagrant_build.sh
@@ -15,5 +15,6 @@ grep -q WIRESHARK_BIN_DIR ~/.profile || echo "export WIRESHARK_BIN_DIR=~/build/r
mkdir -p build
cd build
cmake -DENABLE_CCACHE=ON ../wireshark
-make -j6
+make -j4
+make test-programs
make test