blob: ca403e84a9abd491a19f91a4c68f8c689fde5237 [file] [log] [blame]
Jiyong Parkf29fe392021-07-15 06:03:31 +00001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5java_test_host {
6 name: "AuthFsHostTest",
7 srcs: ["java/**/*.java"],
8 libs: [
9 "tradefed",
10 "compatibility-tradefed",
11 "compatibility-host-util",
12 ],
13 static_libs: [
14 "VirtualizationTestHelper",
15 ],
16 test_suites: ["general-tests"],
Victor Hsiehc0f5fa72022-01-27 23:35:14 +000017 data_device_bins: ["open_then_run"],
Jiyong Parkf29fe392021-07-15 06:03:31 +000018 data: [
19 ":authfs_test_files",
20 ":MicrodroidTestApp.signed",
21 ],
22}
Victor Hsiehae67d3b2021-10-19 12:59:42 -070023
24rust_test {
Victor Hsiehc0f5fa72022-01-27 23:35:14 +000025 name: "open_then_run",
Victor Hsiehae67d3b2021-10-19 12:59:42 -070026 crate_name: "open_then_run",
27 srcs: ["open_then_run.rs"],
28 edition: "2018",
29 rustlibs: [
30 "libandroid_logger",
31 "libanyhow",
32 "libclap",
33 "libcommand_fds",
34 "liblog_rust",
Victor Hsieh0e8976f2021-11-05 16:54:24 +000035 "libnix",
Victor Hsiehae67d3b2021-10-19 12:59:42 -070036 ],
37 test_suites: ["general-tests"],
38 test_harness: false,
39}