"vscode:/vscode.git/clone" did not exist on "b1a21fd456208ffe40fefc23dd97628bb0a56440"
run-ctest.py 3.26 KB
Newer Older
Robert T. McGibbon's avatar
Robert T. McGibbon committed
1
2
3
4
5
6
7
8
"""
Run test suite through CTest, with some options set for the CI environment.

- Runs with a per-test and overall timeout which can be governed by the
  avialable time on the CI system.
- Reruns tests which fail (does not rerun tests which merely timeout).

"""
9
10
from __future__ import print_function
import sys
Robert T. McGibbon's avatar
Robert T. McGibbon committed
11
12
13
14
import os.path
import shutil
import time
from glob import glob
15
16
from os.path import join, exists
from subprocess import call
Robert T. McGibbon's avatar
Robert T. McGibbon committed
17
18
19
20
from argparse import ArgumentParser
from datetime import datetime, timedelta
from xml.etree import ElementTree

21
22

def main():
Robert T. McGibbon's avatar
Robert T. McGibbon committed
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
    parser = ArgumentParser()
    parser.add_argument(
        "--start-time",
        help="Time at which the overall CI job started (unix timestamp)",
        type=int,
        default=int(time.time()))
    parser.add_argument(
        "--job-duration",
        help="Overall time budget for the CI job (minutes). Default=30",
        default=30.,
        type=float)
    parser.add_argument(
        "--run-percent",
        help="Allocate this percent test execution time executing the main "
        "test suite. The remaining fraction will be used for re-running "
        "failing tests. Default=90",
        type=float,
        default=90.)
    parser.add_argument(
        '--timeout',
        help="Timeout for individual tests (seconds). Default=180",
        type=str,
        default='180')

    args = parser.parse_args()

    status = execute_tests(args)
    if status != 0:
        status = execute_failed_tests(args)
    return status

54

Robert T. McGibbon's avatar
Robert T. McGibbon committed
55
56
57
def execute_tests(options):
    start_time = datetime.fromtimestamp(options.start_time)
    stop_time = start_time + timedelta(minutes=options.job_duration)
58

Robert T. McGibbon's avatar
Robert T. McGibbon committed
59
60
    # timedelta for the amount of time from now until the CI job runs out
    remaining = stop_time - datetime.now()
61

Robert T. McGibbon's avatar
Robert T. McGibbon committed
62
63
64
65
    # tell CTest only to use some fraction of the remaining time for this
    # invocation
    stop_time = start_time + timedelta(
        seconds=(options.run_percent / 100.0) * remaining.seconds)
66

Robert T. McGibbon's avatar
Robert T. McGibbon committed
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
    if os.path.isdir('Testing'):
        shutil.rmtree('Testing')
    return call(['ctest',
                 '--output-on-failure',
                 '--schedule-random',
                 '-T', 'Test',
                 '--timeout', options.timeout,
                 '--stop-time', stop_time.strftime('%H:%M:%S')])


def execute_failed_tests(options):
    matches = glob('Testing/*/Test.xml')
    assert len(matches) == 1
    root = ElementTree.parse(matches[0])
    tests = root.findall('.//Testing/Test')

    def failed_without_timeout(test_node):
        if test_node.get('Status') == 'failed':
            return test_node.find(
                'Results/NamedMeasurement[@name="Exit Code"]/Value').text != 'Timeout'

    failed_tests = [t.find('Name').text
                    for t in tests if failed_without_timeout(t)]
    print('*'*30)
    print('Rerunning failing tests...')
    print('*'*30)

    start_time = datetime.fromtimestamp(options.start_time)
    stop_time = start_time + timedelta(minutes=options.job_duration)
    return call(['ctest',
                 '--output-on-failure',
                 '--schedule-random',
                 '-R', '|'.join(failed_tests),
                 '--timeout', options.timeout,
                 '--stop-time', stop_time.strftime('%H:%M:%S')])
102
103
104
105


if __name__ == '__main__':
    sys.exit(main())