~dieggsy/srfi-169

fc67a00f98b3cf9b60025cff59227e2857fe61e8 — dieggsy 2 years ago df9cc6d 0.1.0
Fix up tests
1 files changed, 6 insertions(+), 1 deletions(-)

M tests/run.scm
M tests/run.scm => tests/run.scm +6 -1
@@ 1,10 1,12 @@
;;;; This is the reference test suite for the reference implementation
;;;; of SRFI 169: Underscores in Numbers.

(import srfi.169
(import srfi-169
        (chicken port)
        test)

(test-begin "srfi-169")

(define-syntax conforming
  (syntax-rules ()
    [(_ a b)


@@ 107,3 109,6 @@
    (non-conforming/error "#i#o_1234")
    (non-conforming/error "#i_#o_1234")
    (non-conforming/error "#e#x1234_")))

(test-end "srfi-169")
(test-exit)