Lava: Don't count flaky test included in boot action
[lttng-ci.git] / scripts / lttng-baremetal-tests / lava-submit.py
index 7eeb36707469a0eed10f2136aa8a5b63f42ba425..1a3a68f1c76edf66cdd93fef86f8ca833d07785c 100644 (file)
@@ -47,9 +47,17 @@ def check_job_all_test_cases_state_count(server, job):
     failed_tests=0
     for run in content['test_runs']:
         for result in run['test_results']:
-            if 'test_case_id' in result:
+            if 'test_case_id' in result :
                 if result['result'] in 'pass':
                     passed_tests+=1
+                elif result['test_case_id'] in 'wait_for_test_image_prompt':
+                    # FIXME:This test is part of the boot action and fails
+                    # randomly but doesn't affect the behaviour of the tests.
+                    # No reply on the Lava IRC channel yet. We should update
+                    # our Lava installation and try to reproduce it. This error
+                    # was encountered ont the KVM trusty image only. Not seen
+                    # on Xenial at this point.
+                    pass
                 else:
                     failed_tests+=1
     return (passed_tests, failed_tests)
@@ -113,8 +121,7 @@ def get_boot_cmd():
 def get_config_cmd(build_device):
     packages=['bsdtar', 'psmisc', 'wget', 'python3', 'python3-pip', \
             'libglib2.0-dev', 'libffi-dev', 'elfutils', 'libdw-dev', \
-            'libelf-dev', 'libmount-dev', 'libxml2', 'python3-pandas', \
-            'python3-numpy']
+            'libelf-dev', 'libmount-dev', 'libxml2']
     command = OrderedDict({
         'command': 'lava_command_run',
         'parameters': {
@@ -159,6 +166,11 @@ def get_benchmarks_cmd():
                     'git-repo': 'https://github.com/lttng/lttng-ci.git',
                     'revision': 'master',
                     'testdef': 'lava/baremetal-tests/failing-open-enoent.yml'
+                },
+                {
+                    'git-repo': 'https://github.com/lttng/lttng-ci.git',
+                    'revision': 'master',
+                    'testdef': 'lava/baremetal-tests/perf-tests.yml'
                 }
                 ],
             'timeout': 18000
@@ -328,17 +340,17 @@ def main():
         time.sleep(30)
         jobstatus = server.scheduler.job_status(jobid)['job_status']
 
-    print('Job ended with {} status.'.format(jobstatus))
-    if jobstatus not in 'Complete':
-        return -1
-
     passed, failed=check_job_all_test_cases_state_count(server, jobid)
 
-    print('With {} passed and {} failed Lava test cases.'.format(passed, failed))
-
     if test_type is TestType.tests:
         print_test_output(server, jobid)
 
+    print('Job ended with {} status.'.format(jobstatus))
+    if jobstatus not in 'Complete':
+        return -1
+    else:
+        print('With {} passed and {} failed Lava test cases.'.format(passed, failed))
+
     if failed == 0:
         return 0
     else:
This page took 0.048124 seconds and 4 git commands to generate.