Merge "Add data_bins to apf_run_test so it can run remotely." am: bdd03091c3 am: c354d56eea

Original change: https://android-review.googlesource.com/c/platform/hardware/google/apf/+/1407987

Change-Id: I9049840c9ea3686fe68bd4eb86ebaa712eadcc4e
diff --git a/Android.bp b/Android.bp
index b76c858..4d21712 100644
--- a/Android.bp
+++ b/Android.bp
@@ -59,8 +59,8 @@
     filename: "apf_run_test.sh",
     test_suites: ["general-tests"],
     test_config: "apf_run_test.xml",
-    required: ["apf_run"],
     data: ["testdata/*"],
+    data_bins: ["apf_run"],
     target: {
         darwin: {
             enabled: false,
diff --git a/apf_run_test.sh b/apf_run_test.sh
index 12bbfe0..ef47fc8 100755
--- a/apf_run_test.sh
+++ b/apf_run_test.sh
@@ -23,7 +23,7 @@
         args="$args --age $(cat testdata/$testcase.age)"
     fi
 
-    if diff --color -u <(apf_run $args) <(cat $outputpath); then
+    if diff --color -u <(./apf_run $args) <(cat $outputpath); then
         echo $testname: $testcase: PASS
     else
         echo $testname: $testcase: FAIL
diff --git a/apf_run_test.xml b/apf_run_test.xml
index 689d5a6..1719348 100644
--- a/apf_run_test.xml
+++ b/apf_run_test.xml
@@ -15,7 +15,7 @@
 -->
 <configuration description="Config for running APF tools tests through atest">
     <option name="test-suite-tag" value="apf_run_test" />
-    <!-- This test requires a device, so it's not annotated with a null-device -->
+    <option name="null-device" value="true" />
     <test class="com.android.tradefed.testtype.binary.ExecutableHostTest" >
         <option name="binary" value="apf_run_test.sh" />
         <!-- Script assumes a relative path with the tests/ folders -->