blob: fd45e13b80806f9e9f8266b08944ddbb019c9fcd [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 Hsiehae67d3b2021-10-19 12:59:42 -070017 target_required: ["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 {
25 name: "open_then_run",
26 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",
35 "libnix",
36 ],
37 test_suites: ["general-tests"],
38 test_harness: false,
39}