VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/analysis/tst-a1.py@ 92263

Last change on this file since 92263 was 86975, checked in by vboxsync, 4 years ago

ValKit: Shut up python3 compilation errors. bugref:9788

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3# $Id: tst-a1.py 86975 2020-11-25 14:45:30Z vboxsync $
4
5"""
6Analyzer Experiment 1.
7"""
8
9__copyright__ = \
10"""
11Copyright (C) 2010-2020 Oracle Corporation
12
13This file is part of VirtualBox Open Source Edition (OSE), as
14available from http://www.virtualbox.org. This file is free software;
15you can redistribute it and/or modify it under the terms of the GNU
16General Public License (GPL) as published by the Free Software
17Foundation, in version 2 as it comes in the "COPYING" file of the
18VirtualBox OSE distribution. VirtualBox OSE is distributed in the
19hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
20
21The contents of this file may alternatively be used under the terms
22of the Common Development and Distribution License Version 1.0
23(CDDL) only, as it comes in the "COPYING.CDDL" file of the
24VirtualBox OSE distribution, in which case the provisions of the
25CDDL are applicable instead of those of the GPL.
26
27You may elect to license modified versions of this file under the
28terms and conditions of either the GPL or the CDDL or both.
29"""
30__version__ = "$Revision: 86975 $"
31
32
33import os.path
34import sys
35
36# Only the main script needs to modify the path.
37try: __file__
38except: __file__ = sys.argv[0];
39g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)));
40sys.path.append(g_ksValidationKitDir);
41
42# Validation Kit imports.
43from testanalysis import reader ## @todo fix testanalysis/__init__.py.
44from testanalysis import reporting
45from testanalysis import diff
46
47
48def usage():
49 """ Display usage """
50 print('usage: %s [options] <testresults.xml> [baseline.xml]' % (sys.argv[0]));
51 print('')
52 print('options:')
53 print(' --filter <test-sub-string>')
54 return 1;
55
56def main(asArgs):
57 """ C styl main(). """
58 # Parse arguments
59 sTestFile = None;
60 sBaseFile = None;
61 asFilters = [];
62 iArg = 1;
63 while iArg < len(asArgs):
64 if asArgs[iArg] == '--filter':
65 iArg += 1;
66 asFilters.append(asArgs[iArg]);
67 elif asArgs[iArg].startswith('--help'):
68 return usage();
69 elif asArgs[iArg].startswith('--'):
70 print('syntax error: unknown option "%s"' % (asArgs[iArg]));
71 return usage();
72 elif sTestFile is None:
73 sTestFile = asArgs[iArg];
74 elif sBaseFile is None:
75 sBaseFile = asArgs[iArg];
76 else:
77 print('syntax error: too many file names: %s' % (asArgs[iArg]))
78 return usage();
79 iArg += 1;
80
81 # Down to business
82 oTestTree = reader.parseTestResult(sTestFile);
83 if oTestTree is None:
84 return 1;
85 oTestTree = oTestTree.filterTests(asFilters)
86
87 if sBaseFile is not None:
88 oBaseline = reader.parseTestResult(sBaseFile);
89 if oBaseline is None:
90 return 1;
91 oTestTree = diff.baselineDiff(oTestTree, oBaseline);
92 if oTestTree is None:
93 return 1;
94
95 reporting.produceTextReport(oTestTree);
96 return 0;
97
98if __name__ == '__main__':
99 sys.exit(main(sys.argv));
100
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette