summaryrefslogtreecommitdiff
path: root/regtest/commands/find-regression.py
blob: 734d12ad382e44790c3d34801f6ce3dca76fbb1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# find-regression.py
#
# Copyright (C) 2012 Carlos Garcia Campos <carlosgc@gnome.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

from commands import Command, register_command
from Bisect import Bisect
from Timer import Timer
from Config import Config
from Printer import get_printer
import os
import tempfile

class FindRegression(Command):

    name = 'find-regression'
    usage_args = '[ options ... ] test '
    description = 'Find revision that introduced a regression for the given test'

    def __init__(self):
        Command.__init__(self)
        parser = self._get_args_parser()
        parser.add_argument('--refs-dir',
                            action = 'store', dest = 'refs_dir', default = os.path.join(tempfile.gettempdir(), 'refs'),
                            help = 'Directory containing the references')
        parser.add_argument('-o', '--out-dir',
                            action = 'store', dest = 'out_dir', default = os.path.join(tempfile.gettempdir(), 'out'),
                            help = 'Directory containing the results')
        parser.add_argument('--src-dir',
                            action = 'store', dest = 'src_dir', default = os.path.abspath("../"),
                            help = 'Directory of poppler sources')
        parser.add_argument('--builder',
                            action = 'store', dest = 'builder',
                            choices=['autotools'], default = 'autotools',
                            help = 'Build system to use')
        parser.add_argument('--prefix',
                            action = 'store', dest = 'prefix', default = '/usr/local',
                            help = 'Build prefix')
        parser.add_argument('--good',
                            action = 'store', dest = 'good', metavar = 'REVISION',
                            help = 'Good revision')
        parser.add_argument('--bad',
                            action = 'store', dest = 'bad', default = 'HEAD', metavar = 'REVISION',
                            help = 'Bad revision')
        parser.add_argument('test')

    def run(self, options):
        config = Config()
        config.src_dir = options['src_dir']
        config.builder = options['builder']
        config.prefix = options['prefix']
        config.good = options['good']
        config.bad = options['bad']

        doc = options['test']
        if not os.path.isfile(doc):
            get_printer().printerr("Invalid test %s: not a regulat file" % (doc))
            return 1

        t = Timer()
        bisect = Bisect(options['test'], options['refs_dir'], options['out_dir'])
        bisect.run()
        get_printer().printout_ln("Tests run in %s" % (t.elapsed_str()))

        return 0

register_command('find-regression', FindRegression)