Update interactive/conformance .bat names

Add a -clutter suffix to avoid confustion with others, such as COGL.
This commit is contained in:
Chun-wei Fan 2011-11-15 16:19:06 +08:00
parent 119169b4a1
commit 2a86ecc4b9
2 changed files with 6 additions and 6 deletions

View File

@ -128,7 +128,7 @@ stamp-test-conformance: Makefile $(srcdir)/test-conform-main.c
echo " GEN $$unit"; \ echo " GEN $$unit"; \
( echo "#!/bin/sh" ; echo "$(abs_builddir)/test-launcher.sh '$$i' \"\$$@\"" ) > $$unit$(SHEXT) ; \ ( echo "#!/bin/sh" ; echo "$(abs_builddir)/test-launcher.sh '$$i' \"\$$@\"" ) > $$unit$(SHEXT) ; \
( echo "#!/bin/sh" ; echo "exec $(abs_builddir)/test-conformance$(EXEEXT) -p $$i \"\$$@\"" ) > wrappers/$$unit$(SHEXT) ; \ ( echo "#!/bin/sh" ; echo "exec $(abs_builddir)/test-conformance$(EXEEXT) -p $$i \"\$$@\"" ) > wrappers/$$unit$(SHEXT) ; \
( echo "test-conformance-clutter$(EXEEXT) -p $$i" ) > $$unit.bat ; \ ( echo "test-conformance-clutter$(EXEEXT) -p $$i" ) > $$unit-clutter.bat ; \
( echo "test-conformance-clutter$(EXEEXT) -p $$i" ) >> test-conformance.bat ; \ ( echo "test-conformance-clutter$(EXEEXT) -p $$i" ) >> test-conformance.bat ; \
chmod +x $$unit$(SHEXT); \ chmod +x $$unit$(SHEXT); \
chmod +x wrappers/$$unit$(SHEXT); \ chmod +x wrappers/$$unit$(SHEXT); \

View File

@ -73,7 +73,7 @@ SHEXT = $(EXEEXT)
endif endif
# For convenience, this provides a way to easily run individual unit tests: # For convenience, this provides a way to easily run individual unit tests:
wrappers: stamp-test-interactive ../../build/win32/test-interactive.bat wrappers: stamp-test-interactive ../../build/win32/test-interactive-clutter.bat
@true @true
stamp-test-interactive: Makefile stamp-test-interactive: Makefile
@wrapper=$(abs_builddir)/wrapper.sh ; \ @wrapper=$(abs_builddir)/wrapper.sh ; \
@ -96,8 +96,8 @@ stamp-test-interactive: Makefile
done \ done \
&& echo timestamp > $(@F) && echo timestamp > $(@F)
../../build/win32/test-interactive.bat: Makefile test-interactive$(EXEEXT) ../../build/win32/test-interactive-clutter.bat: Makefile test-interactive$(EXEEXT)
echo " GEN test-interactive.bat" ; \ echo " GEN test-interactive-clutter.bat" ; \
for i in $(UNIT_TESTS); \ for i in $(UNIT_TESTS); \
do \ do \
case $$i in \ case $$i in \
@ -105,8 +105,8 @@ stamp-test-interactive: Makefile
*.c) test_bin=$${i%*.c} \ *.c) test_bin=$${i%*.c} \
;; \ ;; \
esac; \ esac; \
( echo "test-interactive-clutter $$test_bin" ) > $$test_bin.bat ; \ ( echo "test-interactive-clutter $$test_bin" ) > $$test_bin-clutter.bat ; \
( echo "test-interactive-clutter $$test_bin" ) >> test-interactive.bat ; \ ( echo "test-interactive-clutter $$test_bin" ) >> test-interactive-clutter.bat ; \
done \ done \
&& cp *.bat $(top_srcdir)/build/win32/ && cp *.bat $(top_srcdir)/build/win32/