From e37a3b9ebf5eebde8238c3e95847522c4c6b9437 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= Date: Fri, 20 Sep 2019 23:03:31 +0100 Subject: [PATCH] Vagrant: Fix provisioning script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- vagrant_build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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