Skip to content
Snippets Groups Projects
Commit 1c7d1963 authored by Ger van Diepen's avatar Ger van Diepen
Browse files

bug 1419:

Delete envfile at the end
parent bf5c30c9
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@
#
# $Id$
if test $# != 10; then
echo "run as: parmdbremote-src 'socket' host port np rank"
echo " pdb-part filesys ms-part-vds envfile"
......@@ -44,3 +45,5 @@ if test -d $wd; then
fi
parmdbremote $2 $3 $6 # host,port,parmdb-part
rm -f $envfile
......@@ -13,7 +13,8 @@ TESTSCRIPTS = tAxis.sh tAxisMapping.sh tBox.sh tGrid.sh \
tParmFacade.sh tParmFacadeDistr.sh \
tparmdb.sh \
tSourceDBCasa.sh tmakesourcedb.sh \
tsetupparmdb.sh tsetupsourcedb.sh
tsetupparmdb.sh tsetupsourcedb.sh \
tTimeAxis.sh
# scripts and possible programs to run tests
TESTS = $(TESTSCRIPTS)
......
......@@ -82,6 +82,10 @@ void doIt (const string& msname, int timestep, int timestart)
int main (int argc, char* argv[])
{
try {
if (argc < 2) {
cerr << "Run as: tTimeAxis MS [timestep [timestsrt]" << endl;
return 1;
}
int timestep = 50;
int timestart = 0;
if (argc > 2) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment