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>
32 lines
1.1 KiB
Rust
32 lines
1.1 KiB
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.
|
|
|
|
pub mod fixture;
|
|
use fixture::Config;
|
|
use fixture::TestVm;
|
|
|
|
// Tests for possible backwards compatibility issues.
|
|
//
|
|
// There is no backwards compatibility policy yet, these are just "change detector" tests. If you
|
|
// break a test, make sure the change is intended and then ask in go/crosvm-chat to see if anyone
|
|
// objects to updating the golden file.
|
|
|
|
// Many changes to PCI devices can cause issues, e.g. some users depend on crosvm always choosing
|
|
// the same PCI slots for particular devices.
|
|
#[test]
|
|
fn backcompat_test_simple_lspci() {
|
|
let mut vm = TestVm::new(Config::new()).unwrap();
|
|
let expected = include_str!("goldens/backcompat_test_simple_lspci.txt").trim();
|
|
let result = vm
|
|
.exec_in_guest("lspci -n")
|
|
.unwrap()
|
|
.trim()
|
|
.replace("\r", "");
|
|
assert_eq!(
|
|
expected,
|
|
result,
|
|
"PCI Devices changed:\n<<< Expected <<<\n{}\n<<<<<<<<<<<<<<<<\n>>> Got >>>\n{}\n>>>>>>>>>>>>>>>>\n",
|
|
expected, result
|
|
);
|
|
}
|