diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-08 17:18:40 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-07-08 17:18:40 -0500 |
commit | 36df2a269acd2a150d7713f07504213963f0dd3c (patch) | |
tree | d32e41e41ccb72898997309477e02c3f56f2f405 /user/guile/0002-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch | |
parent | ef4fbd05970fd6b09360951d532678445cdb3f67 (diff) | |
download | packages-36df2a269acd2a150d7713f07504213963f0dd3c.tar.gz packages-36df2a269acd2a150d7713f07504213963f0dd3c.tar.bz2 packages-36df2a269acd2a150d7713f07504213963f0dd3c.tar.xz packages-36df2a269acd2a150d7713f07504213963f0dd3c.zip |
user/guile: pull in, bump to 2.2 series (working fine at 2.2.4)
Diffstat (limited to 'user/guile/0002-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch')
-rw-r--r-- | user/guile/0002-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/user/guile/0002-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch b/user/guile/0002-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch new file mode 100644 index 000000000..cbe194dfd --- /dev/null +++ b/user/guile/0002-Mark-mutex-with-owner-not-retained-threads-test-as-u.patch @@ -0,0 +1,29 @@ +From be9d97e0eeb2423b86fad7094a462b142f5176f7 Mon Sep 17 00:00:00 2001 +From: Rob Browning <rlb@defaultvalue.org> +Date: Sun, 18 Mar 2012 13:28:24 -0500 +Subject: Mark "mutex with owner not retained" threads test as unresolved. + +As per discussion with upstream, mark this test as unresolved since it +may produce false negatives, depending on the behavior/timing of the +garbage collector. +--- + test-suite/tests/threads.test | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +diff --git a/test-suite/tests/threads.test b/test-suite/tests/threads.test +index 8178120..7d180de 100644 +--- a/test-suite/tests/threads.test ++++ b/test-suite/tests/threads.test +@@ -412,8 +412,10 @@ + + (gc) (gc) + (let ((m (g))) +- (and (mutex? m) +- (eq? (mutex-owner m) (current-thread))))))) ++ (or ++ (and (mutex? m) ++ (eq? (mutex-owner m) (current-thread))) ++ (throw 'unresolved)))))) + + ;; + ;; mutex lock levels |