1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Author: Massimo Dal Zotto <dz@debian.org>
Description: Skip tests which use [fork] since it isn't supposed to work
with thread-enabled Tcl.
Last-Modified: Thu, 21 Feb 2019 12:50:24 +0300
--- a/Makefile.in
+++ b/Makefile.in
@@ -228,6 +228,8 @@
$(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/mann ; \
done
+# Skip tests which use 'fork'
+TESTFLAGS=-notfile "nice.test pipe.test process.test signal.test"
test: binaries libraries
$(TCLSH) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS)
|