mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
009cb53c76
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>
11 lines
343 B
Docker
11 lines
343 B
Docker
# Copyright 2020 The ChromiumOS Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
ARG ARCH
|
|
FROM ${ARCH}/alpine:3.12
|
|
|
|
RUN apk add --no-cache pciutils
|
|
|
|
# Note: This docker file is run from the $(target)/rootfs directory specified in
|
|
# the Makefile.
|
|
COPY ./delegate /bin/delegate
|