X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Fsystem-tests%2Flava2-submit.py;h=f5a61d3c265b3134203a32ff95147a072aaaaddb;hb=4c3d6586845915a86b9c6b4a7237a1991b8ac552;hp=305419a60e995a9955f418dccbbbc67d61764dc1;hpb=ef84c6ecc2e6566f52558a47fb219de41e7acd82;p=lttng-ci.git diff --git a/scripts/system-tests/lava2-submit.py b/scripts/system-tests/lava2-submit.py index 305419a..f5a61d3 100644 --- a/scripts/system-tests/lava2-submit.py +++ b/scripts/system-tests/lava2-submit.py @@ -44,7 +44,7 @@ class TestType(): class DeviceType(): x86 = 'x86' - kvm = 'kvm' + kvm = 'qemu' values = { 'kvm' : kvm, 'x86' : x86, @@ -183,6 +183,7 @@ def get_vlttng_cmd(device, lttng_tools_commit, lttng_ust_commit=None): return vlttng_cmd def main(): + nfsrootfs = "https://obj.internal.efficios.com/lava/rootfs/rootfs_amd64_trusty_2016-02-23-1134.tar.gz" test_type = None parser = argparse.ArgumentParser(description='Launch baremetal test using Lava') parser.add_argument('-t', '--type', required=True) @@ -223,12 +224,10 @@ def main(): if test_type in [TestType.baremetal_benchmarks, TestType.baremetal_tests]: device_type = DeviceType.x86 vlttng_path = '/tmp/virtenv' - nfsrootfs = "/storage/jenkins-lava/rootfs/rootfs_amd64_trusty_2016-02-23-1134.tar.gz" else: device_type = DeviceType.kvm vlttng_path = '/root/virtenv' - nfsrootfs = "/storage/jenkins-lava/rootfs/rootfs_amd64_trusty_2016-02-23-1134.tar.gz" vlttng_cmd = get_vlttng_cmd(device_type, args.tools_commit, args.ust_commit)