summaryrefslogtreecommitdiffstats
path: root/src/seastar/test.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/seastar/test.py
parentInitial commit. (diff)
downloadceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz
ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/seastar/test.py')
-rwxr-xr-xsrc/seastar/test.py66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/seastar/test.py b/src/seastar/test.py
new file mode 100755
index 00000000..d5c7b279
--- /dev/null
+++ b/src/seastar/test.py
@@ -0,0 +1,66 @@
+#!/usr/bin/env python3
+#
+# This file is open source software, licensed to you under the terms
+# of the Apache License, Version 2.0 (the "License"). See the NOTICE file
+# distributed with this work for additional information regarding copyright
+# ownership. You may not use this file except in compliance with the License.
+#
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+import argparse
+import subprocess
+import seastar_cmake
+
+if __name__ == "__main__":
+
+ parser = argparse.ArgumentParser(description="Seastar test runner")
+ parser.add_argument('--fast', action="store_true", help="Run only fast tests")
+ parser.add_argument('--name', action="store", help="Run only test whose name contains given string")
+ parser.add_argument('--mode', choices=seastar_cmake.SUPPORTED_MODES, help="Run only tests for given build mode")
+ parser.add_argument('--timeout', action="store",default="300",type=int, help="timeout value for test execution")
+ parser.add_argument('--jenkins', action="store",help="jenkins output file prefix")
+ parser.add_argument('--verbose', '-v', action = 'store_true', default = False,
+ help = 'Verbose reporting')
+ args = parser.parse_args()
+
+ MODES = [args.mode] if args.mode else seastar_cmake.SUPPORTED_MODES
+
+ def run_tests(mode):
+ BUILD_PATH = seastar_cmake.BUILD_PATHS[mode]
+
+ # For convenience.
+ tr = seastar_cmake.translate_arg
+
+ TRANSLATED_CMAKE_ARGS = [
+ tr(args.timeout, 'TEST_TIMEOUT'),
+ tr(args.fast, 'EXECUTE_ONLY_FAST_TESTS'),
+ tr(args.jenkins, 'JENKINS', value_when_none=''),
+ ]
+
+ # Modify the existing build by pointing to the build directory.
+ CMAKE_ARGS = ['cmake', BUILD_PATH] + TRANSLATED_CMAKE_ARGS
+ print(CMAKE_ARGS)
+ subprocess.check_call(CMAKE_ARGS, shell=False, cwd=seastar_cmake.ROOT_PATH)
+
+ TRANSLATED_CTEST_ARGS = ['-E', 'Seastar.dist']
+ if args.verbose:
+ TRANSLATED_CTEST_ARGS += ['--verbose']
+ if args.name:
+ TRANSLATED_CTEST_ARGS += ['-R', args.name]
+
+ CTEST_ARGS = ['ctest', BUILD_PATH] + TRANSLATED_CTEST_ARGS
+ print(CTEST_ARGS)
+ subprocess.check_call(CTEST_ARGS, shell=False, cwd=BUILD_PATH)
+
+ for mode in MODES:
+ run_tests(mode)