Mercurial > ~astiob > upreckon > hgweb
annotate upreckon-vcs @ 236:359c79a54fd4 2.00
Closed branch 2.00
| author | Oleg Oshmyan <chortos@inbox.lv> | 
|---|---|
| date | Tue, 11 Dec 2012 01:01:42 +0200 | 
| parents | e17ae4ccbc58 | 
| children | 
| rev | line source | 
|---|---|
| 21 | 1 #! /usr/bin/env python | 
| 78 | 2 # Copyright (c) 2009-2011 Chortos-2 <chortos@inbox.lv> | 
| 16 | 3 | 
| 4 from __future__ import division, with_statement | |
| 5 import optparse, sys, compat | |
| 21 | 6 | 
| 7 from compat import * | |
| 16 | 8 | 
| 114 
c4dba6d44194
Fixed the version number reported in --version
 Oleg Oshmyan <chortos@inbox.lv> parents: 
91diff
changeset | 9 version = '2.00.1 ($$REV$$)' | 
| 45 | 10 parser = optparse.OptionParser(version='Upreckon '+version, epilog='Python 2.5 or newer is required.') | 
| 23 | 11 parser.add_option('-1', dest='legacy', action='store_true', default=False, help='handle configuration files in a way more compatible with test.py 1.x') | 
| 25 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 12 parser.add_option('-p', '--problem', dest='problems', metavar='PROBLEM', action='append', help='test only the PROBLEM (this option can be specified more than once with different problem names, all of which will be tested)') | 
| 16 | 13 parser.add_option('-m', '--copy-io', dest='copyonly', action='store_true', default=False, help='create a copy of the input/output files of the last test case for manual testing and exit') | 
| 14 parser.add_option('-x', '--auto-exit', dest='pause', action='store_false', default=True, help='do not wait for a key to be pressed after finishing testing') | |
| 116 
e17ae4ccbc58
Removed code omitted in 2.00 releases from the 2.00 branch
 Oleg Oshmyan <chortos@inbox.lv> parents: 
114diff
changeset | 15 parser.add_option('-s', '--save-io', dest='erase', action='store_false', default=True, help='do not delete the copies of input/output files after the last test case; create copies of input files and store output in files even if the solution uses standard I/O') | 
| 21 | 16 parser.add_option('-t', '--detect-time', dest='autotime', action='store_true', default=False, help='spend a second detecting the most precise time measurement function') | 
| 90 
1fb319ec33af
Skimming mode added (-k/--skim option)
 Oleg Oshmyan <chortos@inbox.lv> parents: 
87diff
changeset | 17 parser.add_option('-k', '--skim', action='store_true', default=False, help='skip test groups as soon as one test case is failed') | 
| 21 | 18 parser.add_option('--no-time-limits', dest='no_maxtime', action='store_true', default=False, help='disable all time limits') | 
| 16 | 19 | 
| 20 options, args = parser.parse_args() | |
| 21 parser.destroy() | |
| 22 del parser | |
| 23 | |
| 22 | 24 import config, itertools, os, subprocess, sys, time | 
| 16 | 25 | 
| 70 
b9d5857f7b9a
Better emulation of built-ins for testconf
 Oleg Oshmyan <chortos@inbox.lv> parents: 
66diff
changeset | 26 if options.legacy: | 
| 
b9d5857f7b9a
Better emulation of built-ins for testconf
 Oleg Oshmyan <chortos@inbox.lv> parents: 
66diff
changeset | 27 compat.pseudobuiltins += 'xrange', | 
| 
b9d5857f7b9a
Better emulation of built-ins for testconf
 Oleg Oshmyan <chortos@inbox.lv> parents: 
66diff
changeset | 28 | 
| 91 | 29 import testcases | 
| 66 
34ba0b353fc6
Fixed an issue when import errors would be ignored
 Oleg Oshmyan <chortos@inbox.lv> parents: 
64diff
changeset | 30 | 
| 
34ba0b353fc6
Fixed an issue when import errors would be ignored
 Oleg Oshmyan <chortos@inbox.lv> parents: 
64diff
changeset | 31 try: | 
| 22 | 32 from testcases import pause | 
| 33 except ImportError: | |
| 34 pause = None | |
| 35 | |
| 36 try: | |
| 21 | 37 globalconf = config.load_global() | 
| 16 | 38 | 
| 21 | 39 # Do this check here so that if we have to warn them, we do it as early as possible | 
| 22 | 40 if options.pause and not pause and not hasattr(globalconf, 'pause'): | 
| 25 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 41 if os.name == 'posix': | 
| 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 42 globalconf.pause = 'read -s -n 1' | 
| 45 | 43 say('Warning: configuration variable pause is not defined; it was devised automatically but the choice might be incorrect, so Upreckon might exit immediately after the testing is completed.', file=sys.stderr) | 
| 25 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 44 sys.stderr.flush() | 
| 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 45 elif os.name == 'nt': | 
| 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 46 globalconf.pause = 'pause' | 
| 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 47 else: | 
| 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 48 sys.exit('Error: configuration variable pause is not defined and cannot be devised automatically.') | 
| 16 | 49 | 
| 91 | 50 from problem import * | 
| 16 | 51 | 
| 21 | 52 # Support single-problem configurations | 
| 79 
ee8a99dcaaed
Renamed configuration variable tasknames to problems
 Oleg Oshmyan <chortos@inbox.lv> parents: 
78diff
changeset | 53 if globalconf.problems is None: | 
| 21 | 54 shouldprintnames = False | 
| 55 globalconf.multiproblem = False | |
| 79 
ee8a99dcaaed
Renamed configuration variable tasknames to problems
 Oleg Oshmyan <chortos@inbox.lv> parents: 
78diff
changeset | 56 globalconf.problems = os.path.curdir, | 
| 16 | 57 else: | 
| 21 | 58 globalconf.multiproblem = True | 
| 25 
b500e117080e
Bug fixes and overhead reduction
 Oleg Oshmyan <chortos@inbox.lv> parents: 
23diff
changeset | 59 shouldprintnames = True | 
| 16 | 60 | 
| 21 | 61 ntasks = 0 | 
| 62 nfulltasks = 0 | |
| 63 maxscore = 0 | |
| 64 realscore = 0 | |
| 16 | 65 | 
| 79 
ee8a99dcaaed
Renamed configuration variable tasknames to problems
 Oleg Oshmyan <chortos@inbox.lv> parents: 
78diff
changeset | 66 for taskname in (globalconf.problems if not options.problems else options.problems): | 
| 21 | 67 problem = Problem(taskname) | 
| 68 | |
| 22 | 69 if ntasks and not options.copyonly: say() | 
| 21 | 70 if shouldprintnames: say(taskname) | 
| 71 | |
| 72 if options.copyonly: | |
| 73 problem.copytestdata() | |
| 74 else: | |
| 75 real, max = problem.test() | |
| 76 | |
| 77 ntasks += 1 | |
| 22 | 78 nfulltasks += real == max | 
| 21 | 79 realscore += real | 
| 80 maxscore += max | |
| 81 | |
| 82 if options.copyonly: | |
| 83 sys.exit() | |
| 84 | |
| 85 if ntasks != 1: | |
| 86 say() | |
| 64 | 87 say('Grand total: %g/%g weighted points; %d/%d problems solved fully' % (realscore, maxscore, nfulltasks, ntasks)) | 
| 21 | 88 except KeyboardInterrupt: | 
| 89 sys.exit('Exiting due to a keyboard interrupt.') | |
| 16 | 90 | 
| 91 if options.pause: | |
| 21 | 92 say('Press any key to exit...') | 
| 16 | 93 sys.stdout.flush() | 
| 94 | |
| 22 | 95 if pause: | 
| 96 pause() | |
| 97 elif callable(globalconf.pause): | |
| 98 globalconf.pause() | |
| 99 else: | |
| 100 with open(os.devnull, 'w') as devnull: | |
| 83 | 101 subprocess.call(globalconf.pause, shell=True, stdout=devnull, stderr=subprocess.STDOUT) | 
