diff options
author | Brian Dessent <brian@dessent.net> | 2008-03-09 04:10:10 +0000 |
---|---|---|
committer | Brian Dessent <brian@dessent.net> | 2008-03-09 04:10:10 +0000 |
commit | 59fb00ae07d9cfbfac3735f541149bed2c7625cb (patch) | |
tree | de577bf100b29e165aaddd3c7a2076b422feb7f7 /winsup/utils/Makefile.in | |
parent | 68d2dd03a33cfa5c0feff6ce5618062a6ea3b613 (diff) | |
download | cygnal-59fb00ae07d9cfbfac3735f541149bed2c7625cb.tar.gz cygnal-59fb00ae07d9cfbfac3735f541149bed2c7625cb.tar.bz2 cygnal-59fb00ae07d9cfbfac3735f541149bed2c7625cb.zip |
* Makefile.in: Add a 'check' target that builds and runs
testsuite.exe from path-testsuite.o and testsuite.o.
* path.cc: Include testsuite.h.
(struct mnt): Change to a mnt_t typedef and don't define
mount_table when TESTSUITE is defined.
(find2): Don't include when TESTSUITE is defined to avoid warning.
(get_cygdrive0): Ditto.
(get_cygdrive): Ditto.
(read_mounts): Provide empty implementation when TESTSUITE is
defined.
(vconcat): Use the isslash macro.
(unconvert_slashes): New helper to convert to backslashses.
(rel_vconcat): Handle relative paths more gracefully.
(cygpath): Skip a leading "./" sequence. Avoid double-slashes.
Normalize final output to backslashes and remove redundant path
sequences.
* testsuite.cc: New file implementing testsuite driver.
* testsuite.h: New header implementing harness mount table and
series of tests.
Diffstat (limited to 'winsup/utils/Makefile.in')
-rw-r--r-- | winsup/utils/Makefile.in | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index f391075f4..3966c6d62 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -99,10 +99,23 @@ else all: warn_cygcheck_zlib endif -# the rest of this file contains generic rules - all: Makefile $(CYGWIN_BINS) $(MINGW_BINS) +# test harness support (note: the "MINGW_BINS +=" should come after the +# "all:" above so that the testsuite is not run for "make" but only +# "make check".) +MINGW_BINS += testsuite.exe +MINGW_OBJS += path-testsuite.o testsuite.o +testsuite.exe: path-testsuite.o +path-testsuite.cc: path.cc ; @test -L $@ || ln -sf ${filter %.cc,$^} $@ +path-testsuite.o: MINGW_CXXFLAGS += -DTESTSUITE +# this is necessary because this .c lives in the build dir instead of src +path-testsuite.o: MINGW_CXX := ${patsubst -I.,-I$(utils_source),$(MINGW_CXX)} +path-testsuite.cc path.cc testsuite.cc: testsuite.h +check: testsuite.exe ; $(<D)/$(<F) + +# the rest of this file contains generic rules + # how to compile a MinGW object $(MINGW_OBJS): %.o: %.cc ifdef VERBOSE @@ -137,7 +150,7 @@ $(MINGW_BINS): $(MINGW_DEP_LDLIBS) $(CYGWIN_BINS): $(ALL_DEP_LDLIBS) clean: - rm -f *.o $(CYGWIN_BINS) $(MINGW_BINS) + rm -f *.o $(CYGWIN_BINS) $(MINGW_BINS) path-testsuite.cc testsuite.exe realclean: clean rm -f Makefile config.cache |