X-Git-Url: https://git.lukelau.me/?p=scheme.git;a=blobdiff_plain;f=tests.scm;h=563a6e708e79a2abef0eb54b6c68b093be3ab333;hp=56762c72124ee6c0f9bdbd3dd47754a5b73a8dd3;hb=9ee429534c3011b0ed413dc01e81db13f71ac884;hpb=25a4c23da2d76f3bb951d01b1c3175be80441a0a diff --git a/tests.scm b/tests.scm index 56762c7..563a6e7 100644 --- a/tests.scm +++ b/tests.scm @@ -16,7 +16,11 @@ result (loop (read-char p) (string-append result (string next)))))))) -(define (test-prog prog output) +(define (test-prog prog exit-code) + (compile-to-binary prog "/tmp/test-prog") + (system "/tmp/test-prog")) + +(define (test-prog-stdout prog output) (compile-to-binary prog "/tmp/test-prog") (system "/tmp/test-prog > /tmp/test-output.txt") (let ((str (read-file "/tmp/test-output.txt"))) @@ -26,11 +30,11 @@ (test (typecheck '(lambda (x) (+ ((lambda (y) (x y 3)) 5) 2))) '(abs (abs int (abs int int)) int)) -(test-prog '(+ 1 2) "3") -(test-prog '((lambda (x) ((lambda (y) (+ x y)) 42)) 100) "142") +(test-prog '(+ 1 2) 3) +(test-prog '((lambda (x) ((lambda (y) (+ x y)) 42)) 100) 142) (test-prog '(let ((x (+ 1 32)) (y x)) ((lambda (z) (+ 1 z)) (* y x))) - "1090") -(test-prog '(if ((lambda (x) (= x 2)) 1) 0 (- 32 1)) "31") + 1090) +(test-prog '(if ((lambda (x) (= x 2)) 1) 0 (- 32 1)) 31)