mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
60 lines
1.6 KiB
Python
Executable file
60 lines
1.6 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import re
|
|
from subprocess import Popen, call, STDOUT, PIPE
|
|
from glob import glob
|
|
from optparse import OptionParser
|
|
|
|
parser = OptionParser()
|
|
parser.add_option('-R', '--tests-regex', dest='regex_tests',
|
|
help="Run tests matching regular expression. \
|
|
Test names are the directories present in tests folder.\
|
|
This uses standard regex syntax to select tests.")
|
|
(opts, args) = parser.parse_args()
|
|
cwd = os.getcwd()
|
|
|
|
# Terminal color configurations
|
|
OKGREEN = '\033[92m'
|
|
FAIL = '\033[91m'
|
|
ENDC = '\033[0m'
|
|
BOLD = '\033[1m'
|
|
|
|
# Get a list of all test folders
|
|
folders = glob('test_*')
|
|
|
|
# Check to see if a subset of tests is specified on command line
|
|
if opts.regex_tests is not None:
|
|
folders = [item for item in folders if re.search(opts.regex_tests, item)]
|
|
|
|
# Loop around directories
|
|
for adir in sorted(folders):
|
|
|
|
# Go into that directory
|
|
os.chdir(adir)
|
|
pwd = os.path.abspath(os.path.dirname('settings.xml'))
|
|
os.putenv('PWD', pwd)
|
|
|
|
# Print status to screen
|
|
print(adir, end="")
|
|
sz = len(adir)
|
|
for i in range(35 - sz):
|
|
print('.', end="")
|
|
|
|
# Find the test executable
|
|
test_exec = glob('test_*.py')
|
|
assert len(test_exec) == 1, 'There must be only one test executable per ' \
|
|
'test directory'
|
|
|
|
# Update the test results
|
|
proc = Popen(['python', test_exec[0], '--update'])
|
|
returncode = proc.wait()
|
|
if returncode == 0:
|
|
print(BOLD + OKGREEN + "[OK]" + ENDC)
|
|
else:
|
|
print(BOLD + FAIL + "[FAILED]" + ENDC)
|
|
|
|
# Go back a directory
|
|
os.chdir('..')
|