]> code.ossystems Code Review - openembedded-core.git/commitdiff
build-perf-test-wrapper.sh: support xml report format
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Thu, 23 Feb 2017 13:18:33 +0000 (15:18 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 4 Mar 2017 10:42:33 +0000 (10:42 +0000)
Add new command line option '-x' that enbles xml-formatted reports.

Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
scripts/contrib/build-perf-test-wrapper.sh

index f192fcfa925ce275aaba819940813314aa5b256f..240d669cbb4c17a58b1d993668ce0202442f21ba 100755 (executable)
@@ -33,13 +33,15 @@ Optional arguments:
   -C GIT_REPO       commit results into Git
   -w WORK_DIR       work dir for this script
                     (default: GIT_TOP_DIR/build-perf-test)
+  -x                create xml report (instead of json)
 EOF
 }
 
 
 # Parse command line arguments
 commitish=""
-while getopts "ha:c:C:w:" opt; do
+oe_build_perf_test_extra_opts=()
+while getopts "ha:c:C:w:x" opt; do
     case $opt in
         h)  usage
             exit 0
@@ -52,6 +54,8 @@ while getopts "ha:c:C:w:" opt; do
             ;;
         w)  base_dir=`realpath -s "$OPTARG"`
             ;;
+        x)  oe_build_perf_test_extra_opts+=("--xml")
+            ;;
         *)  usage
             exit 1
             ;;
@@ -129,6 +133,7 @@ fi
 # Run actual test script
 oe-build-perf-test --out-dir "$results_dir" \
                    --globalres-file "$globalres_log" \
+                   "${oe_build_perf_test_extra_opts[@]}" \
                    --lock-file "$base_dir/oe-build-perf.lock"
 
 # Commit results to git