Check-in [cf50a21341]
Overview
Comment:Fall back to vendored version of Tcl packages for testing
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: cf50a21341039e5e7ad284515386ac4688e76d71bddbb6c7b989da95bed5798e
User & Date: rkeene on 2019-01-22 17:40:41.699
Other Links: manifest | tags
Context
2019-01-22
17:46
Treat all failures from getaddrinfo() as an empty list, rather than an error check-in: 75fb6dcec1 user: rkeene tags: trunk
17:40
Fall back to vendored version of Tcl packages for testing check-in: cf50a21341 user: rkeene tags: trunk
17:40
Added vendoring of Tcl-only packages from Tcllib check-in: 3dc3a41cee user: rkeene tags: trunk
Changes
80
81
82
83
84
85
86
87

88
89
90
91
92
93
94
80
81
82
83
84
85
86

87
88
89
90
91
92
93
94







-
+







nano.tcl.h: @srcdir@/nano.tcl Makefile
	od -A n -v -t xC < '@srcdir@/nano.tcl' > nano.tcl.h.new.1
	sed 's@  *@@g;s@..@0x&, @g' < nano.tcl.h.new.1 > nano.tcl.h.new.2
	rm -f nano.tcl.h.new.1
	mv nano.tcl.h.new.2 nano.tcl.h

test: @EXTENSION_TARGET@ pkgIndex.tcl
	@srcdir@/test/test.tcl --libpath . --libpath @TCLLIB_PATH@
	@srcdir@/test/test.tcl --libpath . --libpath @TCLLIB_PATH@ --libpath @srcdir@/vendor/tcl-packages

ifeq (@ENABLE_COVERAGE@,true)
coverage.dir: test
	rm -f nano-coverage.info
	lcov --capture --directory . --output-file nano-coverage.info
	mkdir coverage.dir
	genhtml nano-coverage.info --output-directory coverage.dir