summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--win/makefile.vc6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 54cf21d..a32a280 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,10 @@
or [package require registry] attempted to load the release version
of the DLL into a debug build. [Bug 708218] Thanks to Joe Mistachkin
for the patch.
+ * win/makefile.vc: Added quoting around the script name in the
+ 'test' target; Joe Mistachkin insists that he has a configuration
+ that fails to launch tcltest without it, and it appears harmless
+ otherwise.
2003-03-20 Don Porter <dgp@users.sourceforge.net>
diff --git a/win/makefile.vc b/win/makefile.vc
index 863fe7f..a2d613d 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,7 +12,7 @@
# Copyright (c) 2001-2002 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: makefile.vc,v 1.100.2.2 2003/03/13 16:26:15 kennykb Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.100.2.3 2003/03/23 03:10:13 kennykb Exp $
#------------------------------------------------------------------------------
!if "$(MSVCDIR)" == ""
@@ -421,9 +421,9 @@ install: install-binaries install-libraries install-docs
test: setup $(TCLTEST) dlls $(CAT32)
set TCL_LIBRARY=$(ROOT)/library
!if "$(OS)" == "Windows_NT" || "$(MSVCDIR)" == "IDE"
- $(TCLTEST) $(ROOT)/tests/all.tcl $(TESTFLAGS)
+ $(TCLTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS)
!else
- $(TCLTEST) $(ROOT)/tests/all.tcl $(TESTFLAGS) > tests.log
+ $(TCLTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) > tests.log
type tests.log | more
!endif