Changeset: f676219d8424 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/f676219d8424
Modified Files:
testing/Mtest.py.in
Branch: Mar2025
Log Message:
On Windows, don't add "call" to the front of command lines.
Now that we use shlex.split instead of something homebrewed, it doesn't
get removed, so don't add it in the first place.
diffs (23 lines):
diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in
--- a/testing/Mtest.py.in
+++ b/testing/Mtest.py.in
@@ -3425,10 +3425,6 @@ def CheckClassPath():
def SetExecEnv(exe,port,verbose,environ):
- if os.name == 'nt':
- CALL = 'call '
- else:
- CALL = ''
if verbose:
print(file=sys.stderr, end='', flush=True)
for v in exe.keys():
@@ -3436,7 +3432,7 @@ def SetExecEnv(exe,port,verbose,environ)
V = 'MSERVER'
else:
V = v.upper()
- environ[V] = CALL + ' '.join(exe[v]).replace('${PORT}', port)
+ environ[V] = ' '.join(exe[v]).replace('${PORT}', port)
if verbose:
print('%s = %s' % (V, environ[V]))
if verbose:
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]