mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-09 20:04:20 +00:00
Cargo already uses the term 'integration test' for tests living in the tests/ directory of a crate. To prevent confusion, rename our 'integration_tests' crate to 'e2e_tests'. BUG=None TEST=presubmit Change-Id: Icfa819eaed08be54ab0f36092f1ba367f3f1ce88 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4004977 Commit-Queue: Dennis Kempin <denniskempin@google.com> Reviewed-by: Zihan Chen <zihanchen@google.com>
16 lines
375 B
Bash
Executable file
16 lines
375 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2022 The ChromiumOS Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Installs additional dependencies needed to build guest_under_test on debian.
|
|
|
|
set -e
|
|
|
|
sudo apt install \
|
|
gcc-aarch64-linux-gnu \
|
|
qemu-user-static \
|
|
squashfs-tools-ng \
|
|
libelf-dev \
|
|
flex \
|
|
bison
|