From bcecdd912a2b96ae5d35b7c134f85dc4c0a77831 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Sun, 26 Jun 2022 18:51:38 -0400 Subject: [PATCH] Issue #365 - Add new test file --- Makefile | 1 + tests/c-compiler-options.scm | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/c-compiler-options.scm diff --git a/Makefile b/Makefile index c8e487eb..6b51e2da 100644 --- a/Makefile +++ b/Makefile @@ -38,6 +38,7 @@ TEST_SRC = $(TEST_DIR)/unit-tests.scm \ $(TEST_DIR)/base.scm \ $(TEST_DIR)/test.scm \ $(TEST_DIR)/threading.scm \ + $(TEST_DIR)/c-compiler-options.scm \ $(TEST_DIR)/test-shared-queue.scm \ $(TEST_DIR)/macro-hygiene.scm \ $(TEST_DIR)/match-tests.scm \ diff --git a/tests/c-compiler-options.scm b/tests/c-compiler-options.scm new file mode 100644 index 00000000..2ae1e5f8 --- /dev/null +++ b/tests/c-compiler-options.scm @@ -0,0 +1,11 @@ +(import (scheme base) + (scheme write) + (cyclone foreign)) + +;(c-linker-options "-I/tmp") +(c-compiler-options "-I/tmp") +;(define c-compiler-options list) +;(c-linker-options "-I/tmp") + +(display "hello") +