X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=tests%2Ftest-agenda.scm;h=922b2d34732ae07090f789906af7358c2f66e70c;hp=f6a57c19fe63022004db363701b6f03908e6c264;hb=3aaecc5f55f9b340ff21f5a3dd4a374eb1d8d42f;hpb=9bb036f18457a6c2d24343e21e6950f9df5043e7 diff --git a/tests/test-agenda.scm b/tests/test-agenda.scm index f6a57c1..922b2d3 100644 --- a/tests/test-agenda.scm +++ b/tests/test-agenda.scm @@ -369,9 +369,9 @@ (speaker "Time for exception fun!\n") (let ((caught-exception #f)) (catch-8sync - (%8sync (%run (if with-indirection - (indirection-remote-func-breaks) - (remote-func-breaks)))) + (%8sync-run (if with-indirection + (indirection-remote-func-breaks) + (remote-func-breaks))) ('numerical-overflow (lambda (orig-stacks . orig-args) (set! caught-exception #t) @@ -393,23 +393,23 @@ (enq! q local-func-gets-break) (start-agenda (make-agenda #:queue q) #:stop-condition (true-after-n-times 10)) - (test-assert (speaker) - '("Time for exception fun!\n" - "Here we go...\n" - "in here now!\n" - "Well that was fun :)\n"))) + (test-equal (speaker) + '("Time for exception fun!\n" + "Here we go...\n" + "in here now!\n" + "Well that was fun :)\n"))) (let ((q (make-q))) (set! speaker (speak-it)) (enq! q (wrap (local-func-gets-break #:with-indirection #t))) (start-agenda (make-agenda #:queue q) #:stop-condition (true-after-n-times 10)) - (test-assert (speaker) - '("Time for exception fun!\n" - "bebop\n" - "Here we go...\n" - "in here now!\n" - "Well that was fun :)\n"))) + (test-equal (speaker) + '("Time for exception fun!\n" + "bebop\n" + "Here we go...\n" + "in here now!\n" + "Well that was fun :)\n"))) ;; Make sure catching tools work