summaryrefslogtreecommitdiff
path: root/test-suite/Makefile.am
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2012-02-24 11:20:21 +0100
committerAndy Wingo <wingo@pobox.com>2012-02-24 11:20:21 +0100
commit415e00fc57e6d734d90b3a7e2324437ccdf406a7 (patch)
tree3b011d8a5409daaa12004cd54a85ea736719d11a /test-suite/Makefile.am
parent508e4a55df353ec50f005307eb98557c7da79c82 (diff)
downloadguile-415e00fc57e6d734d90b3a7e2324437ccdf406a7.tar.gz
signal an error on multithreaded fork
* libguile/posix.c (scm_fork): Signal an error if a `fork' is attempted after threads have been spawned. * test-suite/tests/00-socket.test: Moved here, from socket.test, so as to run before any threads are created. * test-suite/Makefile.am: Adapt.
Diffstat (limited to 'test-suite/Makefile.am')
-rw-r--r--test-suite/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/Makefile.am b/test-suite/Makefile.am
index a2f6def2c..8daa2e051 100644
--- a/test-suite/Makefile.am
+++ b/test-suite/Makefile.am
@@ -1,7 +1,7 @@
## Process this file with automake to produce Makefile.in.
##
## Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
-## 2010, 2011 Software Foundation, Inc.
+## 2010, 2011, 2012 Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -23,6 +23,7 @@
SUBDIRS = standalone vm
SCM_TESTS = tests/00-initial-env.test \
+ tests/00-socket.test \
tests/alist.test \
tests/and-let-star.test \
tests/arbiters.test \
@@ -111,7 +112,6 @@ SCM_TESTS = tests/00-initial-env.test \
tests/regexp.test \
tests/session.test \
tests/signals.test \
- tests/socket.test \
tests/srcprop.test \
tests/srfi-1.test \
tests/srfi-6.test \