summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2016-12-12 12:11:03 +0100
committerAndy Wingo <wingo@pobox.com>2016-12-12 12:14:46 +0100
commit437f9ccabbdcb3fe57bb59f0092aaeec39e822be (patch)
tree2f6ca3a4792fb4a5c3703ef0e88772e7c2229b2b /tests
parentImport (ice-9 threads) to avoid deprecation warnings (diff)
downloadguile-fibers-437f9ccabbdcb3fe57bb59f0092aaeec39e822be.tar.gz
Fibers inherit dynamic state of parent.
* fibers.scm (spawn-fiber): Fibers inherit dynamic state of parent. * tests/parameters.scm: New test. * Makefile.am: Add new file.
Diffstat (limited to 'tests')
-rw-r--r--tests/parameters.scm72
1 files changed, 72 insertions, 0 deletions
diff --git a/tests/parameters.scm b/tests/parameters.scm
new file mode 100644
index 0000000..e0e1b67
--- /dev/null
+++ b/tests/parameters.scm
@@ -0,0 +1,72 @@
+;; Fibers: cooperative, event-driven user-space threads.
+
+;;;; Copyright (C) 2016 Free Software Foundation, Inc.
+;;;;
+;;;; This library is free software; you can redistribute it and/or
+;;;; modify it under the terms of the GNU Lesser General Public
+;;;; License as published by the Free Software Foundation; either
+;;;; version 3 of the License, or (at your option) any later version.
+;;;;
+;;;; This library is distributed in the hope that it will be useful,
+;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;;;; Lesser General Public License for more details.
+;;;;
+;;;; You should have received a copy of the GNU Lesser General Public
+;;;; License along with this library; if not, write to the Free Software
+;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+;;;;
+
+(define-module (tests parameters)
+ #:use-module (fibers)
+ #:use-module (fibers channels))
+
+(define failed? #f)
+
+(define-syntax-rule (assert-equal expected actual)
+ (let ((x expected))
+ (format #t "assert ~s equal to ~s: " 'actual x)
+ (force-output)
+ (let ((y actual))
+ (cond
+ ((equal? x y) (format #t "ok\n"))
+ (else
+ (format #t "no (got ~s)\n" y)
+ (set! failed? #t))))))
+
+(define-syntax-rule (assert-run-fibers-terminates exp)
+ (begin
+ (format #t "assert run-fibers on ~s terminates: " 'exp)
+ (force-output)
+ (let ((start (get-internal-real-time)))
+ (call-with-values (lambda () (run-fibers (lambda () exp)))
+ (lambda vals
+ (format #t "ok (~a s)\n" (/ (- (get-internal-real-time) start)
+ 1.0 internal-time-units-per-second))
+ (apply values vals))))))
+
+(define-syntax-rule (assert-run-fibers-returns (expected ...) exp)
+ (begin
+ (call-with-values (lambda () (assert-run-fibers-terminates exp))
+ (lambda run-fiber-return-vals
+ (assert-equal '(expected ...) run-fiber-return-vals)))))
+
+(define-syntax-rule (rpc exp)
+ (let ((ch (make-channel)))
+ (spawn-fiber (lambda () (put-message ch exp)))
+ (get-message ch)))
+
+(define my-param (make-parameter #f))
+
+(assert-run-fibers-returns (#f) (my-param))
+(assert-run-fibers-returns (#f) (rpc (my-param)))
+(assert-run-fibers-returns (42) (rpc (begin (my-param 42) (my-param))))
+(assert-run-fibers-returns (#f) (my-param))
+(assert-run-fibers-returns (100) (begin (my-param 100) (rpc (my-param))))
+(assert-run-fibers-returns (#f) (my-param))
+(assert-equal #f (my-param))
+(assert-equal 'foo (begin (my-param 'foo) (my-param)))
+(assert-run-fibers-returns (foo) (my-param))
+(assert-run-fibers-returns (foo) (rpc (my-param)))
+
+(exit (if failed? 1 0))