run-ctest.py 3.75 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
from subprocess import call
Robert T. McGibbon's avatar
Robert T. McGibbon committed
16
17
18
19
from argparse import ArgumentParser
from datetime import datetime, timedelta
from xml.etree import ElementTree

20
21

def main():
Robert T. McGibbon's avatar
Robert T. McGibbon committed
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
    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')
45
46
47
48
49
50
51
52
53
54
    parser.add_argument(
        '--in-order',
        help='Run the tests in order',
        default=False,
        action='store_true')
    parser.add_argument(
        '--parallel',
        help='Number of processors to use',
        type=int,
        default=1)
Robert T. McGibbon's avatar
Robert T. McGibbon committed
55

56
    args, raw_args = parser.parse_known_args()
Robert T. McGibbon's avatar
Robert T. McGibbon committed
57

58
    status = execute_tests(args, raw_args)
Robert T. McGibbon's avatar
Robert T. McGibbon committed
59
    if status != 0:
60
        status = execute_failed_tests(args, raw_args)
Robert T. McGibbon's avatar
Robert T. McGibbon committed
61
62
    return status

63

64
def execute_tests(options, raw_options):
Robert T. McGibbon's avatar
Robert T. McGibbon committed
65
66
    start_time = datetime.fromtimestamp(options.start_time)
    stop_time = start_time + timedelta(minutes=options.job_duration)
67

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

Robert T. McGibbon's avatar
Robert T. McGibbon committed
71
72
73
74
    # 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)
75

Robert T. McGibbon's avatar
Robert T. McGibbon committed
76
77
78
79
    if os.path.isdir('Testing'):
        shutil.rmtree('Testing')
    return call(['ctest',
                 '--output-on-failure',
80
                 '--parallel', str(options.parallel),
Robert T. McGibbon's avatar
Robert T. McGibbon committed
81
82
                 '-T', 'Test',
                 '--timeout', options.timeout,
83
84
                 '--stop-time', stop_time.strftime('%H:%M:%S')] + raw_options +
                 (['--schedule-random'] if options.in_order else []))
Robert T. McGibbon's avatar
Robert T. McGibbon committed
85
86


87
def execute_failed_tests(options, raw_options):
Robert T. McGibbon's avatar
Robert T. McGibbon committed
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
    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)
106
    return call(['ctest'] + raw_options + [
Robert T. McGibbon's avatar
Robert T. McGibbon committed
107
                 '--output-on-failure',
108
                 '--parallel', str(options.parallel),
Robert T. McGibbon's avatar
Robert T. McGibbon committed
109
110
                 '-R', '|'.join(failed_tests),
                 '--timeout', options.timeout,
111
112
                 '--stop-time', stop_time.strftime('%H:%M:%S')] +
                 (['--schedule-random'] if options.in_order else []))
113
114
115
116


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