summary refs log tree commit diff
path: root/build_test.py
diff options
context:
space:
mode:
authorDaniel Verkamp <dverkamp@chromium.org>2019-06-28 16:22:58 -0700
committerCommit Bot <commit-bot@chromium.org>2019-07-03 20:39:50 +0000
commit5104b9641cc6e85adcf45bebe636228ae6ab6eee (patch)
tree2bdfa3e38be4f22ea696962350051c7d65cd2917 /build_test.py
parente09e4701776719dd53062418e8432ee30c0bdfa5 (diff)
downloadcrosvm-5104b9641cc6e85adcf45bebe636228ae6ab6eee.tar
crosvm-5104b9641cc6e85adcf45bebe636228ae6ab6eee.tar.gz
crosvm-5104b9641cc6e85adcf45bebe636228ae6ab6eee.tar.bz2
crosvm-5104b9641cc6e85adcf45bebe636228ae6ab6eee.tar.lz
crosvm-5104b9641cc6e85adcf45bebe636228ae6ab6eee.tar.xz
crosvm-5104b9641cc6e85adcf45bebe636228ae6ab6eee.tar.zst
crosvm-5104b9641cc6e85adcf45bebe636228ae6ab6eee.zip
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 <dverkamp@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1682925
Reviewed-by: Zach Reizner <zachr@chromium.org>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'build_test.py')
-rwxr-xr-xbuild_test.py14
1 files changed, 14 insertions, 0 deletions
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',
 ]