Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests for semaphore with a count argument. #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions ansi-tests/beyond-ansi/load-ba.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@
(load "errors-data-and-control-flow-1.lsp")
(load "errors-data-and-control-flow-2.lsp")
(load "errors-data-and-control-flow-3.lsp")
(in-package :ba-test)
)

(load "processes.lsp")
(in-package :ba-test))
120 changes: 120 additions & 0 deletions ansi-tests/beyond-ansi/processes.lsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
;-*- Mode: Lisp -*-
;;;; Author: Jon Godbout
;;;; Created: Sat May 10 06:37:41 2020
;;;; Contains: Tests for semaphore

(in-package :ba-test)

(compile-and-load "ba-aux.lsp")


;; Test semaphore

(deftest semaphore-init-to-0
(let (test-object
(my-semaphore (make-semaphore)))
(ccl:process-run-function
"sem-caller"
#'(lambda ()
(setf test-object 'a)
(wait-on-semaphore my-semaphore)
(setf test-object 'b)))
(sleep .01)
(assert (eq test-object 'a))
(signal-semaphore my-semaphore)
(sleep .01)
(assert (eq test-object 'b)))
t)


(deftest semaphore-init-to-0-two-processes
(let (test-object
(my-semaphore (make-semaphore)))
(ccl:process-run-function
"sem-caller"
#'(lambda ()
(push 'a test-object)
(wait-on-semaphore my-semaphore)
(push 'a test-object)))
(ccl:process-run-function
"sem-caller"
#'(lambda ()
(push 'c test-object)
(wait-on-semaphore my-semaphore)
(push 'd test-object)))

(sleep .01)
(assert (or (eq test-object '(a c))
(eq test-object '(c a))))

(signal-semaphore my-semaphore)
(assert (and (or (member 'b test-object)
(member 'd test-object))
(or (not (member 'b test-object))
(not (member 'd test-object)))))

(signal-semaphore my-semaphore)
(sleep .01)
(assert (and (member 'b test-object)
(member 'd test-object))))
t)


(deftest semaphore-init-to-2
(let (test-object
(my-semaphore (make-semaphore :count 2)))
(ccl:process-run-function
"sem-caller"
#'(lambda ()
(setf test-object 'a)
(wait-on-semaphore my-semaphore)
(setf test-object 'b)))
;; Seamphore is immediately grabbed since count is positive.
(sleep .01)
(assert (eq test-object 'b))

(ccl:process-run-function
"sem-caller"
#'(lambda ()
(setf test-object 'c)
(wait-on-semaphore my-semaphore)
(setf test-object 'd)))

(sleep .01)
(assert (eq test-object 'd))

;; Count becomes negative
(ccl:process-run-function
"sem-caller"
#'(lambda ()
(setf test-object 'e)
(wait-on-semaphore my-semaphore)
(setf test-object 'f)))

(sleep .01)
(assert (eq test-object 'e))
(signal-semaphore my-semaphore)
(sleep .01)
(assert (eq test-object 'f)))
t)


(deftest semaphore-init-to-neg-1
(let (test-object
(my-semaphore (make-semaphore :count -1)))
(ccl:process-run-function
"sem-caller"
#'(lambda ()
(setf test-object 'a)
(wait-on-semaphore my-semaphore)
(setf test-object 'b)))

(sleep .01)
(assert (eq test-object 'a))
(signal-semaphore my-semaphore)
(sleep .01)
(assert (eq test-object 'a)
(signal-semaphore my-semaphore)
(sleep .01)
(assert (eq test-object 'b)))
t)