summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/build/chromeos/gen_skylab_runner.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/libwebrtc/build/chromeos/gen_skylab_runner.py
parentInitial commit. (diff)
downloadfirefox-esr-upstream.tar.xz
firefox-esr-upstream.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/build/chromeos/gen_skylab_runner.py')
-rwxr-xr-xthird_party/libwebrtc/build/chromeos/gen_skylab_runner.py108
1 files changed, 108 insertions, 0 deletions
diff --git a/third_party/libwebrtc/build/chromeos/gen_skylab_runner.py b/third_party/libwebrtc/build/chromeos/gen_skylab_runner.py
new file mode 100755
index 0000000000..3a5e0c0445
--- /dev/null
+++ b/third_party/libwebrtc/build/chromeos/gen_skylab_runner.py
@@ -0,0 +1,108 @@
+#!/usr/bin/env vpython3
+#
+# Copyright 2021 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import argparse
+import os
+import sys
+
+
+class SkylabClientTestTest:
+
+ # The basic shell script for client test run in Skylab. The arguments listed
+ # here will be fed by autotest at the run time.
+ #
+ # * test-launcher-summary-output: the path for the json result. It will be
+ # assigned by autotest, who will upload it to GCS upon test completion.
+ # * test-launcher-shard-index: the index for this test run.
+ # * test-launcher-total-shards: the total test shards.
+ # * test_args: arbitrary runtime arguments configured in test_suites.pyl,
+ # attached after '--'.
+ BASIC_SHELL_SCRIPT = """
+#!/bin/sh
+
+while [[ $# -gt 0 ]]; do
+ case "$1" in
+ --test-launcher-summary-output)
+ summary_output=$2
+ shift 2
+ ;;
+
+ --test-launcher-shard-index)
+ shard_index=$2
+ shift 2
+ ;;
+
+ --test-launcher-total-shards)
+ total_shards=$2
+ shift 2
+ ;;
+
+ --)
+ test_args=$2
+ break
+ ;;
+
+ *)
+ break
+ ;;
+ esac
+done
+
+if [ ! -d $(dirname $summary_output) ] ; then
+ mkdir -p $(dirname $summary_output)
+fi
+
+cd `dirname $0` && cd ..
+ """
+
+ def __init__(self, args):
+ self.test_exe = args.test_exe
+ self.output = args.output
+
+ @property
+ def suite_name(self):
+ return self.test_exe
+
+ def build_test_script(self):
+ # Build the shell script that will be used on the device to invoke the test.
+ # Stored here as a list of lines.
+ device_test_script_contents = self.BASIC_SHELL_SCRIPT.split('\n')
+
+ test_invocation = ('LD_LIBRARY_PATH=./ ./%s '
+ ' --test-launcher-summary-output=$summary_output'
+ ' --test-launcher-shard-index=$shard_index'
+ ' --test-launcher-total-shards=$total_shards'
+ ' $test_args' % self.test_exe)
+
+ device_test_script_contents.append(test_invocation)
+ with open(self.output, 'w') as w:
+ w.write('\n'.join(device_test_script_contents) + '\n')
+ os.chmod(self.output, 0o755)
+
+
+def main():
+ parser = argparse.ArgumentParser()
+ parser.add_argument(
+ '--test-exe',
+ type=str,
+ required=True,
+ help='Path to test executable to run inside the device.')
+ parser.add_argument('--verbose', '-v', action='store_true')
+ parser.add_argument(
+ '--output',
+ required=True,
+ type=str,
+ help='Path to create the runner script.')
+
+ args = parser.parse_args()
+
+ test = SkylabClientTestTest(args)
+ test.build_test_script()
+ return 0
+
+
+if __name__ == '__main__':
+ sys.exit(main())