diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-28 22:54:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-28 22:54:19 (GMT) |
commit | a8b104c3b5ef5cf3721b20a37d48360b90f77a10 (patch) | |
tree | 1db30d24ce737688e181c057e5a12951fd2ce441 /win/makefile.vc | |
parent | fac7c80aed10356b5116daca1d8b8a160aa1d18d (diff) | |
download | tcl-a8b104c3b5ef5cf3721b20a37d48360b90f77a10.zip tcl-a8b104c3b5ef5cf3721b20a37d48360b90f77a10.tar.gz tcl-a8b104c3b5ef5cf3721b20a37d48360b90f77a10.tar.bz2 |
Bug [3549770]: Multiple test failures running tcltest outside build tree
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index e453df1..5db8143 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -527,14 +527,14 @@ test: setup $(TCLTEST) dlls $(CAT32) set TCL_LIBRARY=$(ROOT)/library !if "$(OS)" == "Windows_NT" || "$(MSVCDIR)" == "IDE" $(TCLTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) -loadfile << - set ::ddelib [file normalize $(TCLDDELIB:\=/)] - set ::reglib [file normalize $(TCLREGLIB:\=/)] + package ifneeded dde 1.3.3 [list load "$(TCLDDELIB:\=/)" dde] + package ifneeded registry 1.2.2 [list load "$(TCLREGLIB:\=/)" registry] << !else @echo Please wait while the tests are collected... $(TCLTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) -loadfile << > tests.log - set ::ddelib [file normalize $(TCLDDELIB:\=/)] - set ::reglib [file normalize $(TCLREGLIB:\=/)] + package ifneeded dde 1.3.3 "$(TCLDDELIB:\=/)" dde] + package ifneeded registry 1.2.2 "$(TCLREGLIB:\=/)" registry] << type tests.log | more !endif |