#!/usr/bin/perl
#
# This is a simple stub for the 'runtest' command that is used in TestLib.pm
#
# TODO: extend this to recognize parallel execution options
#
#  _________________________________________________________________________
#
#  FAST: Python tools for software testing.
#  Copyright (c) 2008 Sandia Corporation.
#  This software is distributed under the BSD License.
#  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
#  the U.S. Government retains certain rights in this software.
#  For more information, see the FAST README.txt file.
#  _________________________________________________________________________

system("(@ARGV) 2>&1");
exit 0;
