#!python
# -*- python -*-

# This software was produced by NIST, an agency of the U.S. government,
# and by statute is not subject to copyright in the United States.
# Recipients of this software assume all responsibilities associated
# with its operation, modification and maintenance. However, to
# facilitate maintenance we ask that before distributing modified
# versions of this software, you first contact the authors at
# oof_manager@nist.gov. 

# This is the start up script for the oof2 gui test suite.  It
# just wraps TEST/GUI/guitests.py.  There's no difference between running
# this script and running "python guitests.py" in the TEST/GUI
# directory except that with this script the user doesn't have to know
# how to find guitests.py. 

import sys
import os
from math import *

import oof2
sys.path.append(os.path.dirname(oof2.__file__))
from TEST.GUI import guitests
homedir = os.path.dirname(guitests.__file__)
guitests.run(homedir)
