summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorLorenzo Colitti <lorenzo@google.com>2019-09-26 23:40:02 +0900
committerLorenzo Colitti <lorenzo@google.com>2019-10-14 21:57:17 +0900
commit26dafcd858146f028c5b23fcf6c5c05fd3c3a670 (patch)
tree56654ecdcd6af3aa11dd9b4dfc3407f0a0d72bbd /Android.bp
parent983eb51423383190f80d31ed32fa38a112f5c04d (diff)
downloadapf-26dafcd858146f028c5b23fcf6c5c05fd3c3a670.tar.gz
Add some tests for apf_run.
These tests cover both apf_run itself and the disassembler (and of course the interpreter). Test: atest apf_run_test Change-Id: I622bb2bbd0ec48bdddb511963c374651705ff545
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index c326428..5df80dd 100644
--- a/Android.bp
+++ b/Android.bp
@@ -52,3 +52,18 @@ cc_binary_host {
},
},
}
+
+sh_test_host {
+ name: "apf_run_test",
+ src: "apf_run_test.sh",
+ filename: "apf_run_test.sh",
+ test_suites: ["general-tests"],
+ test_config: "apf_run_test.xml",
+ required: [":apf_run"],
+ data: ["testdata/*"],
+ target: {
+ darwin: {
+ enabled: false,
+ },
+ },
+}