A few small fix ups.
- Add a default xml file to run if nothing is specified on the command-line.
- Add a way to specify a xml file in suites without having to specify the
full path name.
- Move all of the test xml files into their own directory.
- Add the suites directory for to glibc benchmarks.
- Add a new test for help data.
- Modify the full suite test to verify the default xml is chosen and use
the real full.xml instead of the test one. Delete the test_full.xml.
- Move the property tests to the end of the suite.
- Add skipping of xml comments.
Test: Ran the unit tests and ran the bionic benchmarks.
Change-Id: Ie99965f86fe915af0175de46c7780ab79e2b0843
diff --git a/benchmarks/Android.bp b/benchmarks/Android.bp
index 6cda463..e8745a2 100644
--- a/benchmarks/Android.bp
+++ b/benchmarks/Android.bp
@@ -80,6 +80,7 @@
enabled: false,
},
},
+ data: ["suites/*"],
}
cc_library_static {
@@ -100,5 +101,5 @@
"libbase",
"libBionicBenchmarksUtils",
],
- data: ["suites/test_*.xml"],
+ data: ["suites/*", "test_suites/*"],
}