From 9d9c173f49f607ea4a93fc04fa92f74281c2f7db Mon Sep 17 00:00:00 2001 From: Francis Deslauriers Date: Tue, 15 Aug 2017 11:30:49 -0400 Subject: [PATCH] jjb: lava: Move kprobe test to different test shell Signed-off-by: Francis Deslauriers --- scripts/lttng-baremetal-tests/lava-submit.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/lttng-baremetal-tests/lava-submit.py b/scripts/lttng-baremetal-tests/lava-submit.py index fc8cd3f..834cc44 100644 --- a/scripts/lttng-baremetal-tests/lava-submit.py +++ b/scripts/lttng-baremetal-tests/lava-submit.py @@ -259,7 +259,17 @@ def get_kvm_tests_cmd(): 'git-repo': 'https://github.com/lttng/lttng-ci.git', 'revision': 'master', 'testdef': 'lava/baremetal-tests/destructive-tests.yml' - }, + } + ], + 'timeout': 18000 + } + }) + return command +def get_kprobes_test_cmd(): + command = OrderedDict({ + 'command': 'lava_test_shell', + 'parameters': { + 'testdef_repos': [ { 'git-repo': 'https://github.com/lttng/lttng-ci.git', 'revision': 'master', @@ -427,6 +437,7 @@ def main(): j['actions'].append(get_config_cmd('kvm')) j['actions'].append(get_env_setup_cmd('kvm', args.tools_commit, args.ust_commit)) j['actions'].append(get_kvm_tests_cmd()) + j['actions'].append(get_kprobes_test_cmd()) j['actions'].append(get_results_cmd(stream_name='tests-kernel')) else: assert False, 'Unknown test type' -- 2.34.1