From cf66cf1057fcd687cc42d4d7dcaeeef00cba089b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 21 Jul 2022 22:10:02 -0400 Subject: [PATCH] Test is linux only --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 77fd4ef3..3c0edae1 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ TESTS = $(basename $(TEST_SRC)) all : cyclone icyc libs test : libs $(TESTS) - icyc -p "(begin (define-syntax foo (syntax-rules () ((foo) 123))) (foo))" + icyc -p "(cond-expand (linux (begin (define-syntax foo (syntax-rules () ((foo) 123))) (foo))))" example : cd $(EXAMPLE_DIR) ; $(MAKE)