-
Notifications
You must be signed in to change notification settings - Fork 21
/
run_tests
executable file
·35 lines (25 loc) · 1.06 KB
/
run_tests
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
#!/usr/bin/env python
import sys, os, inspect
# Set the current working directory to the directory where this script is located
os.chdir(os.path.abspath(os.path.dirname(sys.argv[0])))
#### Set the name of the application here and moose directory relative to the application
app_name = 'redback'
MOOSE_DIR = os.path.abspath(os.path.join('..', 'moose'))
#### See if MOOSE_DIR is already in the environment instead
if "MOOSE_DIR" in os.environ:
MOOSE_DIR = os.environ['MOOSE_DIR']
sys.path.append(os.path.join(MOOSE_DIR, 'python'))
##import path_tool
#path_tool.activate_module('TestHarness')
# Append error flag when running tests
#sys.argv.insert(1, "--error")
from TestHarness import TestHarness
#from Tester import Tester
# Run the tests!
TestHarness.buildAndRun(sys.argv, app_name, MOOSE_DIR)
#if '--store-timing' in sys.argv:
# harness = TestTimer(sys.argv, app_name, MOOSE_DIR)
#else:
# harness = TestHarness(sys.argv, app_name, MOOSE_DIR)
#harness.factory.loadPlugins([os.path.join(os.getcwd(), 'python/TestHarness')], 'testers', Tester)
#harness.findAndRunTests()