blob: 794608014ff340c153c4b2e281d8559777a01ba8 [file] [log] [blame]
// Copyright (C) 2020 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
kernel_version = "5.10"
kernel_stem = "kernel_prebuilts-" + kernel_version
kernel_modules_stem = "virt_device_prebuilts_kernel_modules-" + kernel_version
// JAR containing all virtualization host-side tests.
java_test_host {
name: "VirtualizationHostTestCases",
srcs: ["java/**/*.java"],
test_suites: ["device-tests"],
libs: ["tradefed"],
data: [
":virt_hostside_tests_kernel",
":virt_hostside_tests_initramfs",
":virt_hostside_tests_vm_config",
],
required: [
"virt_hostside_tests_vsock_server",
],
}
prebuilt_etc {
name: "virt_hostside_tests_kernel",
src: "nofile",
arch: {
arm64: {
src: ":" + kernel_stem + "-arm64",
},
x86_64: {
src: ":" + kernel_stem + "-x86_64",
},
},
}
// Copy config files to output directory so that AndroidTest.xml can copy them to the device.
filegroup {
name: "virt_hostside_tests_vm_config",
srcs: ["vm_config.json"],
}
android_filesystem {
name: "virt_hostside_tests_initramfs",
arch: {
arm64: {
deps: [kernel_modules_stem + "-arm64"],
},
x86_64: {
deps: [kernel_modules_stem + "-x86_64"],
},
},
deps: [
"virt_hostside_tests_guest_init",
"virt_hostside_tests_vsock_client",
],
type: "cpio",
}