From f429e2c55f77d5869683d902c9f4d96df1678d6c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 3 May 2017 09:18:25 +0200 Subject: Get rid of legacy build systems --- tests/Makefile.am | 6 - tests/buildfile | 4 +- tests/makefile | 37 --- tests/parser/makefile | 89 ------- tests/roundtrip/makefile | 102 -------- tests/serializer/makefile | 91 ------- tests/template/Makefile.am | 21 -- tests/template/template-vc10.vcxproj | 167 ------------- tests/template/template-vc10.vcxproj.filters | 20 -- tests/template/template-vc11.vcxproj | 171 ------------- tests/template/template-vc11.vcxproj.filters | 20 -- tests/template/template-vc12.vcxproj | 171 ------------- tests/template/template-vc12.vcxproj.filters | 20 -- tests/template/template-vc9.vcproj | 352 --------------------------- tests/test.bat | 74 ------ tests/tests-vc10.sln | 15 -- tests/tests-vc11.sln | 15 -- tests/tests-vc12.sln | 17 -- tests/tests-vc9.sln | 15 -- 19 files changed, 1 insertion(+), 1406 deletions(-) delete mode 100644 tests/Makefile.am delete mode 100644 tests/makefile delete mode 100644 tests/parser/makefile delete mode 100644 tests/roundtrip/makefile delete mode 100644 tests/serializer/makefile delete mode 100644 tests/template/Makefile.am delete mode 100644 tests/template/template-vc10.vcxproj delete mode 100644 tests/template/template-vc10.vcxproj.filters delete mode 100644 tests/template/template-vc11.vcxproj delete mode 100644 tests/template/template-vc11.vcxproj.filters delete mode 100644 tests/template/template-vc12.vcxproj delete mode 100644 tests/template/template-vc12.vcxproj.filters delete mode 100644 tests/template/template-vc9.vcproj delete mode 100644 tests/test.bat delete mode 100644 tests/tests-vc10.sln delete mode 100644 tests/tests-vc11.sln delete mode 100644 tests/tests-vc12.sln delete mode 100644 tests/tests-vc9.sln (limited to 'tests') diff --git a/tests/Makefile.am b/tests/Makefile.am deleted file mode 100644 index b4dfe28..0000000 --- a/tests/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -# file : tests/Makefile.am -# copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC -# license : MIT; see accompanying LICENSE file - -SUBDIRS = __path__(dirs) -EXTRA_DIST = __file__(extra_dist) diff --git a/tests/buildfile b/tests/buildfile index 3e7f5fa..b79265a 100644 --- a/tests/buildfile +++ b/tests/buildfile @@ -2,6 +2,4 @@ # copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC # license : MIT; see accompanying LICENSE file -d = parser/ roundtrip/ serializer/ -./: $d -include $d +./: parser/ roundtrip/ serializer/ diff --git a/tests/makefile b/tests/makefile deleted file mode 100644 index bfd4317..0000000 --- a/tests/makefile +++ /dev/null @@ -1,37 +0,0 @@ -# file : tests/makefile -# copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC -# license : MIT; see accompanying LICENSE file - -include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make - -tests := parser serializer roundtrip - -default := $(out_base)/ -test := $(out_base)/.test -dist := $(out_base)/.dist -clean := $(out_base)/.clean - -$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests))) -$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests))) - -$(dist): export dirs := $(tests) -$(dist): export extra_dist := test.bat tests-vc9.sln tests-vc10.sln \ -tests-vc11.sln tests-vc12.sln -$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests))) - $(call meta-automake) - $(call meta-vc9sln,tests-vc9.sln) - $(call meta-vc10sln,tests-vc10.sln) - $(call meta-vc11sln,tests-vc11.sln) - $(call meta-vc12sln,tests-vc12.sln) - $(call meta-vctest,tests-vc9.sln,test.bat) - -$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests))) - -$(call include,$(bld_root)/meta/vc9sln.make) -$(call include,$(bld_root)/meta/vc10sln.make) -$(call include,$(bld_root)/meta/vc11sln.make) -$(call include,$(bld_root)/meta/vc12sln.make) -$(call include,$(bld_root)/meta/vctest.make) -$(call include,$(bld_root)/meta/automake.make) - -$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile)) diff --git a/tests/parser/makefile b/tests/parser/makefile deleted file mode 100644 index 934ea75..0000000 --- a/tests/parser/makefile +++ /dev/null @@ -1,89 +0,0 @@ -# file : tests/parser/makefile -# copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC -# license : MIT; see accompanying LICENSE file - -include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make - -cxx_tun := driver.cxx - -cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) -cxx_od := $(cxx_obj:.o=.o.d) - -studxml.l := $(out_root)/xml/studxml.l -studxml.l.cpp-options := $(out_root)/xml/studxml.l.cpp-options - -driver := $(out_base)/driver -test := $(out_base)/.test -dist := $(out_base)/.dist -clean := $(out_base)/.clean - -# Build. -# -$(driver): $(cxx_obj) $(studxml.l) -$(cxx_obj) $(cxx_od): $(studxml.l.cpp-options) - -$(call include-dep,$(cxx_od)) - -# Alias for default target. -# -$(out_base)/: $(driver) - -# Dist -# -$(dist): name := $(subst $(src_root)/tests/,,$(src_base)) -$(dist): sources := $(cxx_tun) -$(dist): export extra_dist := $(name)-vc9.vcproj \ -$(name)-vc10.vcxproj $(name)-vc10.vcxproj.filters \ -$(name)-vc11.vcxproj $(name)-vc11.vcxproj.filters \ -$(name)-vc12.vcxproj $(name)-vc12.vcxproj.filters -$(dist): - $(call dist-data,$(sources)) - $(call meta-automake,../template/Makefile.am) - $(call meta-vc9proj,../template/template-vc9.vcproj,$(name)-vc9.vcproj) - $(call meta-vc10proj,../template/template-vc10.vcxproj,$(name)-vc10.vcxproj) - $(call meta-vc11proj,../template/template-vc11.vcxproj,$(name)-vc11.vcxproj) - $(call meta-vc12proj,../template/template-vc12.vcxproj,$(name)-vc12.vcxproj) - - -# Test. -# -$(test): $(driver) - $(call message,test $<,$<) - - -# Clean. -# -$(clean): \ - $(driver).o.clean \ - $(addsuffix .cxx.clean,$(cxx_obj)) \ - $(addsuffix .cxx.clean,$(cxx_od)) - - -# Generated .gitignore. -# -ifeq ($(out_base),$(src_base)) -$(driver): | $(out_base)/.gitignore - -$(out_base)/.gitignore: files := driver -$(clean): $(out_base)/.gitignore.clean - -$(call include,$(bld_root)/git/gitignore.make) -endif - - -# How to. -# -$(call include,$(bld_root)/dist.make) -$(call include,$(bld_root)/meta/vc9proj.make) -$(call include,$(bld_root)/meta/vc10proj.make) -$(call include,$(bld_root)/meta/vc11proj.make) -$(call include,$(bld_root)/meta/vc12proj.make) -$(call include,$(bld_root)/meta/automake.make) - -$(call include,$(bld_root)/cxx/o-e.make) -$(call include,$(bld_root)/cxx/cxx-o.make) -$(call include,$(bld_root)/cxx/cxx-d.make) - -# Dependencies. -# -$(call import,$(src_root)/xml/makefile) diff --git a/tests/roundtrip/makefile b/tests/roundtrip/makefile deleted file mode 100644 index 16dfefc..0000000 --- a/tests/roundtrip/makefile +++ /dev/null @@ -1,102 +0,0 @@ -# file : tests/roundtrip/makefile -# copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC -# license : MIT; see accompanying LICENSE file - -include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make - -cxx_tun := driver.cxx - -tests := \ -attribute.xml \ -namespace.xml \ -followup-1.xml \ -followup-2.xml \ -characters.xml - -# -# -cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) -cxx_od := $(cxx_obj:.o=.o.d) - -studxml.l := $(out_root)/xml/studxml.l -studxml.l.cpp-options := $(out_root)/xml/studxml.l.cpp-options - -driver := $(out_base)/driver -test := $(out_base)/.test -dist := $(out_base)/.dist -clean := $(out_base)/.clean - -# Build. -# -$(driver): $(cxx_obj) $(studxml.l) -$(cxx_obj) $(cxx_od): $(studxml.l.cpp-options) - -$(call include-dep,$(cxx_od)) - -# Alias for default target. -# -$(out_base)/: $(driver) - - -# Dist -# -$(dist): name := $(subst $(src_root)/tests/,,$(src_base)) -$(dist): sources := $(cxx_tun) -$(dist): extras := $(tests) -$(dist): export extra_dist := $(extras) $(name)-vc9.vcproj \ -$(name)-vc10.vcxproj $(name)-vc10.vcxproj.filters \ -$(name)-vc11.vcxproj $(name)-vc11.vcxproj.filters \ -$(name)-vc12.vcxproj $(name)-vc12.vcxproj.filters -$(dist): - $(call dist-data,$(sources) $(extras)) - $(call meta-automake,../template/Makefile.am) - $(call meta-vc9proj,../template/template-vc9.vcproj,$(name)-vc9.vcproj) - $(call meta-vc10proj,../template/template-vc10.vcxproj,$(name)-vc10.vcxproj) - $(call meta-vc11proj,../template/template-vc11.vcxproj,$(name)-vc11.vcxproj) - $(call meta-vc12proj,../template/template-vc12.vcxproj,$(name)-vc12.vcxproj) - -# Test. -# -$(test): tests := $(tests) -$(test): test_body = $(call message,test $< $1,$< $(src_base)/$1 >$(out_base)/test.out)$(literal_newline)\ -$(literal_tab)$(call message,,diff -u $(src_base)/$1 $(out_base)/test.out)$(literal_newline)\ -$(literal_tab)$(call message,,rm -f $(out_base)/test.out)$(literal_newline) -$(test): $(driver) - $(foreach t,$(tests),$(call test_body,$t)) - -# Clean. -# -$(clean): \ - $(driver).o.clean \ - $(addsuffix .cxx.clean,$(cxx_obj)) \ - $(addsuffix .cxx.clean,$(cxx_od)) - - -# Generated .gitignore. -# -ifeq ($(out_base),$(src_base)) -$(driver): | $(out_base)/.gitignore - -$(out_base)/.gitignore: files := driver -$(clean): $(out_base)/.gitignore.clean - -$(call include,$(bld_root)/git/gitignore.make) -endif - - -# How to. -# -$(call include,$(bld_root)/dist.make) -$(call include,$(bld_root)/meta/vc9proj.make) -$(call include,$(bld_root)/meta/vc10proj.make) -$(call include,$(bld_root)/meta/vc11proj.make) -$(call include,$(bld_root)/meta/vc12proj.make) -$(call include,$(bld_root)/meta/automake.make) - -$(call include,$(bld_root)/cxx/o-e.make) -$(call include,$(bld_root)/cxx/cxx-o.make) -$(call include,$(bld_root)/cxx/cxx-d.make) - -# Dependencies. -# -$(call import,$(src_root)/xml/makefile) diff --git a/tests/serializer/makefile b/tests/serializer/makefile deleted file mode 100644 index d7b2815..0000000 --- a/tests/serializer/makefile +++ /dev/null @@ -1,91 +0,0 @@ -# file : tests/serializer/makefile -# copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC -# license : MIT; see accompanying LICENSE file - -include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make - -cxx_tun := driver.cxx - -# -# -cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) -cxx_od := $(cxx_obj:.o=.o.d) - -studxml.l := $(out_root)/xml/studxml.l -studxml.l.cpp-options := $(out_root)/xml/studxml.l.cpp-options - -driver := $(out_base)/driver -test := $(out_base)/.test -dist := $(out_base)/.dist -clean := $(out_base)/.clean - -# Build. -# -$(driver): $(cxx_obj) $(studxml.l) -$(cxx_obj) $(cxx_od): $(studxml.l.cpp-options) - -$(call include-dep,$(cxx_od)) - -# Alias for default target. -# -$(out_base)/: $(driver) - -# Dist -# -$(dist): name := $(subst $(src_root)/tests/,,$(src_base)) -$(dist): sources := $(cxx_tun) -$(dist): export extra_dist := $(name)-vc9.vcproj \ -$(name)-vc10.vcxproj $(name)-vc10.vcxproj.filters \ -$(name)-vc11.vcxproj $(name)-vc11.vcxproj.filters \ -$(name)-vc12.vcxproj $(name)-vc12.vcxproj.filters -$(dist): - $(call dist-data,$(sources)) - $(call meta-automake,../template/Makefile.am) - $(call meta-vc9proj,../template/template-vc9.vcproj,$(name)-vc9.vcproj) - $(call meta-vc10proj,../template/template-vc10.vcxproj,$(name)-vc10.vcxproj) - $(call meta-vc11proj,../template/template-vc11.vcxproj,$(name)-vc11.vcxproj) - $(call meta-vc12proj,../template/template-vc12.vcxproj,$(name)-vc12.vcxproj) - - -# Test. -# -$(test): $(driver) - $(call message,test $<,$<) - - -# Clean. -# -$(clean): \ - $(driver).o.clean \ - $(addsuffix .cxx.clean,$(cxx_obj)) \ - $(addsuffix .cxx.clean,$(cxx_od)) - - -# Generated .gitignore. -# -ifeq ($(out_base),$(src_base)) -$(driver): | $(out_base)/.gitignore - -$(out_base)/.gitignore: files := driver -$(clean): $(out_base)/.gitignore.clean - -$(call include,$(bld_root)/git/gitignore.make) -endif - - -# How to. -# -$(call include,$(bld_root)/dist.make) -$(call include,$(bld_root)/meta/vc9proj.make) -$(call include,$(bld_root)/meta/vc10proj.make) -$(call include,$(bld_root)/meta/vc11proj.make) -$(call include,$(bld_root)/meta/vc12proj.make) -$(call include,$(bld_root)/meta/automake.make) - -$(call include,$(bld_root)/cxx/o-e.make) -$(call include,$(bld_root)/cxx/cxx-o.make) -$(call include,$(bld_root)/cxx/cxx-d.make) - -# Dependencies. -# -$(call import,$(src_root)/xml/makefile) diff --git a/tests/template/Makefile.am b/tests/template/Makefile.am deleted file mode 100644 index d8b5b50..0000000 --- a/tests/template/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -# file : tests/template/Makefile.am -# copyright : not copyrighted - public domain - -EXTRA_DIST = __file__(extra_dist) - -noinst_PROGRAMS = driver -driver_SOURCES = driver.cxx __path__(extra_sources) __path__(extra_headers) -LDADD = $(top_builddir)/xml/libstudxml.la - -AM_CPPFLAGS = -I'$(top_builddir)' -I'$(top_srcdir)' - -TESTS=$(top_builddir)/tester -TESTS_ENVIRONMENT=example=; export example; - -CLEANFILES = test.out - -# Make sure make doesn't try to build the no-extension headers -# thinking that they are executable. Those are pulled in through -# auto-generated dependencies. -# -__foreach_w__(__f,__path__(xml_headers),$(top_srcdir)/xml/__f ): ; @: diff --git a/tests/template/template-vc10.vcxproj b/tests/template/template-vc10.vcxproj deleted file mode 100644 index f1849bd..0000000 --- a/tests/template/template-vc10.vcxproj +++ /dev/null @@ -1,167 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {__uuid__()} - Win32Proj - __value__(name) - - - - Application - true - Unicode - - - Application - true - Unicode - - - Application - false - true - Unicode - - - Application - false - true - Unicode - - - - - - - - - - - - - - - - - - - true - $(Configuration)\ - driver - - - true - $(Platform)\$(Configuration)\ - driver - - - false - $(Configuration)\ - driver - - - false - $(Platform)\$(Configuration)\ - driver - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib\studxml-d.lib;%(AdditionalDependencies) - Console - true - - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib64\studxml-d.lib;%(AdditionalDependencies) - Console - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib\studxml.lib;%(AdditionalDependencies) - Console - true - true - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib64\studxml.lib;%(AdditionalDependencies) - Console - true - true - true - - - -__header_entries__(extra_headers) - - -__source_entry__(driver.cxx) -__source_entries__(extra_sources) - - - - - diff --git a/tests/template/template-vc10.vcxproj.filters b/tests/template/template-vc10.vcxproj.filters deleted file mode 100644 index 6d459fa..0000000 --- a/tests/template/template-vc10.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {__uuid__()} - cxx - - - {__uuid__()} - h;hxx;ixx;txx - - - -__header_filter_entries__(extra_headers) - - -__source_filter_entry__(driver.cxx) -__source_filter_entries__(extra_sources) - - diff --git a/tests/template/template-vc11.vcxproj b/tests/template/template-vc11.vcxproj deleted file mode 100644 index dd43663..0000000 --- a/tests/template/template-vc11.vcxproj +++ /dev/null @@ -1,171 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {__uuid__()} - Win32Proj - __value__(name) - - - - Application - true - v110 - Unicode - - - Application - true - v110 - Unicode - - - Application - false - v110 - true - Unicode - - - Application - false - v110 - true - Unicode - - - - - - - - - - - - - - - - - - - true - $(Configuration)\ - driver - - - true - $(Platform)\$(Configuration)\ - driver - - - false - $(Configuration)\ - driver - - - false - $(Platform)\$(Configuration)\ - driver - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib\studxml-d.lib;%(AdditionalDependencies) - Console - true - - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib64\studxml-d.lib;%(AdditionalDependencies) - Console - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib\studxml.lib;%(AdditionalDependencies) - Console - true - true - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib64\studxml.lib;%(AdditionalDependencies) - Console - true - true - true - - - -__header_entries__(extra_headers) - - -__source_entry__(driver.cxx) -__source_entries__(extra_sources) - - - - - diff --git a/tests/template/template-vc11.vcxproj.filters b/tests/template/template-vc11.vcxproj.filters deleted file mode 100644 index 6d459fa..0000000 --- a/tests/template/template-vc11.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {__uuid__()} - cxx - - - {__uuid__()} - h;hxx;ixx;txx - - - -__header_filter_entries__(extra_headers) - - -__source_filter_entry__(driver.cxx) -__source_filter_entries__(extra_sources) - - diff --git a/tests/template/template-vc12.vcxproj b/tests/template/template-vc12.vcxproj deleted file mode 100644 index 411c7e0..0000000 --- a/tests/template/template-vc12.vcxproj +++ /dev/null @@ -1,171 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {__uuid__()} - Win32Proj - __value__(name) - - - - Application - true - v120 - Unicode - - - Application - true - v120 - Unicode - - - Application - false - v120 - true - Unicode - - - Application - false - v120 - true - Unicode - - - - - - - - - - - - - - - - - - - true - $(Configuration)\ - driver - - - true - $(Platform)\$(Configuration)\ - driver - - - false - $(Configuration)\ - driver - - - false - $(Platform)\$(Configuration)\ - driver - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib\studxml-d.lib;%(AdditionalDependencies) - Console - true - - - - - - - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib64\studxml-d.lib;%(AdditionalDependencies) - Console - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;_CONSOLE;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib\studxml.lib;%(AdditionalDependencies) - Console - true - true - true - - - - - Level3 - - - MaxSpeed - true - true - WIN32;_CONSOLE;_LIB;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(SolutionDir)\.. - 4068;4355;4800;4290;%(DisableSpecificWarnings) - - - $(SolutionDir)\..\lib64\studxml.lib;%(AdditionalDependencies) - Console - true - true - true - - - -__header_entries__(extra_headers) - - -__source_entry__(driver.cxx) -__source_entries__(extra_sources) - - - - - diff --git a/tests/template/template-vc12.vcxproj.filters b/tests/template/template-vc12.vcxproj.filters deleted file mode 100644 index 6d459fa..0000000 --- a/tests/template/template-vc12.vcxproj.filters +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {__uuid__()} - cxx - - - {__uuid__()} - h;hxx;ixx;txx - - - -__header_filter_entries__(extra_headers) - - -__source_filter_entry__(driver.cxx) -__source_filter_entries__(extra_sources) - - diff --git a/tests/template/template-vc9.vcproj b/tests/template/template-vc9.vcproj deleted file mode 100644 index 2a95903..0000000 --- a/tests/template/template-vc9.vcproj +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -__source_entry__(driver.cxx) -__source_entries__(extra_sources) - - -__file_entries__(extra_headers) - - - - - diff --git a/tests/test.bat b/tests/test.bat deleted file mode 100644 index a6e1749..0000000 --- a/tests/test.bat +++ /dev/null @@ -1,74 +0,0 @@ -@echo off -rem file : tests/test.bat -rem copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC -rem license : MIT; see accompanying LICENSE file - -setlocal - -set "tests=__path__(dirs)" -set "confs=__path__(configurations)" -set "plats=__path__(platforms)" -set "curdir=%CD%" -set "topdir=%curdir%\.." -set "failed=" - -goto start - -rem -rem %1 - test directory -rem %2 - configuration -rem %3 - platform -rem -:run_test - cd %1 - - if "_%3_" == "_Win32_" ( - set "dir=%2" - ) else ( - set "dir=%3\%2" - ) - - if exist %dir%\driver.exe ( - echo %1\%3\%2 - call %topdir%\tester.bat test %2 %3 - if errorlevel 1 ( - set "failed=%failed% %1\%3\%2" - ) - ) - - cd %curdir% -goto :eof - -:start - -for %%t in (%tests%) do ( - for %%c in (%confs%) do ( - for %%p in (%plats%) do ( - call :run_test %%t %%c %%p - ) - ) -) - -if not "_%failed%_" == "__" goto error - -echo. -echo ALL TESTS PASSED -echo. -goto end - -:usage -echo. -echo usage: test.bat -echo. - -:error -if not "_%failed%_" == "__" ( - echo. - for %%t in (%failed%) do echo FAILED: %%t - echo. -) -endlocal -exit /b 1 - -:end -endlocal diff --git a/tests/tests-vc10.sln b/tests/tests-vc10.sln deleted file mode 100644 index 9a5dc32..0000000 --- a/tests/tests-vc10.sln +++ /dev/null @@ -1,15 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/tests/tests-vc11.sln b/tests/tests-vc11.sln deleted file mode 100644 index 436eeea..0000000 --- a/tests/tests-vc11.sln +++ /dev/null @@ -1,15 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/tests/tests-vc12.sln b/tests/tests-vc12.sln deleted file mode 100644 index 446d701..0000000 --- a/tests/tests-vc12.sln +++ /dev/null @@ -1,17 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/tests/tests-vc9.sln b/tests/tests-vc9.sln deleted file mode 100644 index 2ec9432..0000000 --- a/tests/tests-vc9.sln +++ /dev/null @@ -1,15 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -__projects__ -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution -__solution_configurations__ - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution -__project_configurations__ - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal -- cgit v1.1