mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-10 12:09:31 +00:00
These tests require access to kvm and are not suitable for a unit test. The tests are unmodified and only some visibility changes were made to allow them to become integration tests. BUG=b:244623785 TEST=presubmit Change-Id: I916360f14dba204caca846957bebccf77d451631 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4004344 Auto-Submit: Dennis Kempin <denniskempin@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
9 lines
212 B
Rust
9 lines
212 B
Rust
// 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.
|
|
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(unix)] {
|
|
mod unix;
|
|
}
|
|
}
|