From 5104b9641cc6e85adcf45bebe636228ae6ab6eee Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Fri, 28 Jun 2019 16:22:58 -0700 Subject: build_test.py: test more packages Add a number of packages to the build_test.py list so that they are built and tested during local development. build_test.py doesn't run in any automated tests currently, but it's still useful for checking whether everything still builds for multiple architectures without the overhead of a full portage build. BUG=None TEST=./build_test.py Change-Id: I6d3300ae3189311fb6faffaf10c254636adba7c1 Signed-off-by: Daniel Verkamp Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1682925 Reviewed-by: Zach Reizner Tested-by: kokoro --- build_test.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/build_test.py b/build_test.py index 21d87df..6225518 100755 --- a/build_test.py +++ b/build_test.py @@ -26,16 +26,30 @@ AARCH64_TRIPLE = os.getenv('AARCH64_TRIPLE', 'aarch64-cros-linux-gnu') X86_64_TRIPLE = os.getenv('X86_64_TRIPLE', 'x86_64-cros-linux-gnu') TEST_MODULES_PARALLEL = [ + 'arch', + 'assertions', + 'bit_field', 'crosvm', 'data_model', + 'devices', + 'enumn', + 'kernel_cmdline', 'kernel_loader', 'kvm', 'kvm_sys', + 'msg_socket', 'net_sys', 'net_util', + 'qcow', + 'qcow_utils', + 'rand_ish', + 'resources', + 'sync', 'syscall_defines', + 'tpm2', 'vhost', 'virtio_sys', + 'vm_control', 'x86_64', ] -- cgit 1.4.1