From 9bd3e827ec95ae9d07a5e1592c17488f797a14b2 Mon Sep 17 00:00:00 2001 From: pierre Date: Thu, 5 Dec 2002 16:03:34 +0000 Subject: [PATCH] + -X option to disable UseComSpec --- tests/utils/dotest.pp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/utils/dotest.pp b/tests/utils/dotest.pp index ce72550477..7af9e8c01f 100644 --- a/tests/utils/dotest.pp +++ b/tests/utils/dotest.pp @@ -615,6 +615,7 @@ var writeln(' -C set compiler to use'); writeln(' -V verbose'); writeln(' -E execute test also'); + writeln(' -X don''t use COMSPEC'); writeln(' -A include ALL tests'); writeln(' -G include graph tests'); writeln(' -K include known bug tests'); @@ -655,12 +656,13 @@ begin if para='-' then DoUsual:=false; end; - 'V' : DoVerbose:=true; 'K' : begin DoKnown:=true; if para='-' then DoUsual:=false; end; + 'V' : DoVerbose:=true; + 'X' : UseComSpec:=false; end; end else @@ -803,7 +805,10 @@ begin end. { $Log$ - Revision 1.20 2002-11-18 16:42:43 pierre + Revision 1.21 2002-12-05 16:03:34 pierre + + -X option to disable UseComSpec + + Revision 1.20 2002/11/18 16:42:43 pierre + KNOWNRUNERROR added Revision 1.19 2002/11/18 01:31:07 pierre