@@ -66,9 +66,10 @@ install : cl.exe
6666 mklink $(PREFIX ) \r elocate.exe $(PREFIX ) \c l.exe
6767
6868setup_test : cl.exe
69- echo " -------------------"
70- echo " Running Test Setup"
71- echo " -------------------"
69+ @echo \n
70+ @echo -------------------
71+ @echo Running Test Setup
72+ @echo -------------------
7273 -@ if NOT EXIST " tmp\test" mkdir " tmp\test"
7374 cd tmp\t est
7475 copy ..\. .\c l.exe cl.exe
@@ -80,9 +81,10 @@ setup_test: cl.exe
8081# * space in a path - preserved by quoted arguments
8182# * escaped quoted arguments
8283build_and_check_test_sample : setup_test
83- echo " --------------------"
84- echo " Building Test Sample"
85- echo " --------------------"
84+ @echo \n
85+ @echo --------------------
86+ @echo Building Test Sample
87+ @echo --------------------
8688 cd tmp\t est
8789 cl /c /EHsc " ..\..\test\src file\calc.cxx" /DCALC_EXPORTS /DCALC_HEADER=" \" calc header/calc.h\" " /I ..\. .\t est\i nclude
8890 cl /c /EHsc ..\. .\t est\m ain.cxx /I ..\. .\t est\i nclude
@@ -94,9 +96,10 @@ build_and_check_test_sample : setup_test
9496# Test basic wrapper behavior - did the absolute path to the DLL get injected
9597# into the executable
9698test_wrapper : build_and_check_test_sample
97- echo " --------------------"
98- echo " Running Wrapper Test"
99- echo " --------------------"
99+ @echo \n
100+ @echo --------------------
101+ @echo Running Wrapper Test
102+ @echo --------------------
100103 cd tmp
101104 move test\t ester.exe .\t ester.exe
102105 .\t ester.exe
@@ -110,9 +113,10 @@ test_wrapper : build_and_check_test_sample
110113
111114# Test relocating an executable - re-write internal paths to dlls
112115test_relocate_exe : build_and_check_test_sample
113- echo " --------------------------"
114- echo " Running Relocate Exe Test"
115- echo " --------------------------"
116+ @echo \n
117+ @echo --------------------------
118+ @echo Running Relocate Exe Test
119+ @echo --------------------------
116120 cd tmp\t est
117121 -@ if NOT EXIST " relocate.exe" mklink relocate.exe cl.exe
118122 move calc.dll ..\c alc.dll
@@ -124,9 +128,10 @@ test_relocate_exe: build_and_check_test_sample
124128
125129# Test relocating a dll - re-write import library
126130test_relocate_dll : build_and_check_test_sample
127- echo " --------------------------"
128- echo " Running Relocate DLL test"
129- echo " --------------------------"
131+ @echo \n
132+ @echo --------------------------
133+ @echo Running Relocate DLL test
134+ @echo --------------------------
130135 cd tmp/test
131136 -@ if NOT EXIST " relocate.exe" mklink relocate.exe cl.exe
132137 cd ..
@@ -142,9 +147,10 @@ test_relocate_dll: build_and_check_test_sample
142147 cd ../..
143148
144149test_pipe_overflow : build_and_check_test_sample
145- echo " --------------------"
146- echo " Pipe overflow test"
147- echo " --------------------"
150+ @echo \n
151+ @echo --------------------
152+ @echo Pipe overflow test
153+ @echo --------------------
148154 set SPACK_CC_TMP=%SPACK_CC%
149155 set SPACK_CC=$(MAKEDIR ) \t est\l ots-of-output.bat
150156 cl /c /EHsc " test\src file\calc.cxx"
@@ -154,18 +160,20 @@ build_zerowrite_test: test\writezero.obj
154160 link $(LFLAGS ) $* * Shlwapi.lib /out:writezero.exe
155161
156162test_zerowrite : build_zerowrite_test
157- echo " -----------------------"
158- echo " Running zerowrite test"
159- echo " -----------------------"
163+ @echo \n
164+ @echo -----------------------
165+ @echo Running zerowrite test
166+ @echo -----------------------
160167 set SPACK_CC_TMP=%SPACK_CC%
161168 set SPACK_CC=$(MAKEDIR ) \w ritezero.exe
162169 cl /c EHsc " test\src file\calc.cxx"
163170 set SPACK_CC=%SPACK_CC_TMP%
164171
165172test_long_paths : build_and_check_test_sample
166- echo " ------------------------"
167- echo " Running long paths test"
168- echo " ------------------------"
173+ @echo \n
174+ @echo ------------------------
175+ @echo Running long paths test
176+ @echo ------------------------
169177 mkdir tmp\t mp\v erylongdirectoryname\e venlongersubdirectoryname
170178 xcopy /E test\i nclude tmp\t mp\v erylongdirectoryname\e venlongersubdirectoryname
171179 xcopy /E " test\src file" tmp\t mp\v erylongdirectoryname\e venlongersubdirectoryname
@@ -182,9 +190,10 @@ test_long_paths: build_and_check_test_sample
182190 cd ../../../..
183191
184192test_relocate_long_paths : test_long_paths
185- echo " ---------------------------------"
186- echo " Running relocate logn paths test"
187- echo " ---------------------------------"
193+ @echo \n
194+ @echo ---------------------------------
195+ @echo Running relocate logn paths test
196+ @echo ---------------------------------
188197 cd tmp\t mp\v erylongdirectoryname\e venlongersubdirectoryname
189198 -@ if NOT EXIST " relocate.exe" mklink relocate.exe cl.exe
190199 cd ..
@@ -200,9 +209,10 @@ test_relocate_long_paths: test_long_paths
200209 cd ../../../..
201210
202211test_exe_with_exports :
203- echo ------------------------------
204- echo Running exe with exports test
205- echo ------------------------------
212+ @echo \n
213+ @echo ------------------------------
214+ @echo Running exe with exports test
215+ @echo ------------------------------
206216 mkdir tmp\t est\e xe_with_exports
207217 xcopy /E test\i nclude tmp\t est\e xe_with_exports
208218 xcopy /E " test\src file" tmp\t est\e xe_with_exports
@@ -223,6 +233,10 @@ test_exe_with_exports:
223233 cd ../../..
224234
225235test_def_file_name_override :
236+ @echo
237+ @echo ------------------------------------
238+ @echo Running Def file name override test
239+ @echo ------------------------------------
226240 mkdir tmp\t est\d ef\d ef_override
227241 xcopy /E test\i nclude tmp\t est\d ef\d ef_override
228242 xcopy /E " test\src file" tmp\t est\d ef\d ef_override
0 commit comments