https://github.com/pou036/redback
Raw File
Tip revision: a427c9241a00c0e62f0b9c72e13b460526803918 authored by eleni198 on 25 November 2016, 11:04:39 UTC
single fluid mass balance working, work is needed on the material functions, i.e. diffusivity and capillary pressure
Tip revision: a427c92
run_tests
#!/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 os.environ.has_key("MOOSE_DIR"):
  MOOSE_DIR = os.environ['MOOSE_DIR']

sys.path.append(os.path.join(MOOSE_DIR, 'python'))
import path_tool
path_tool.activate_module('TestHarness')

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()
back to top