aboutsummaryrefslogtreecommitdiff
path: root/tests/test.lisp
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-23 14:06:15 +0800
committerMistivia <i@mistivia.com>2025-06-23 14:06:15 +0800
commit69e9065635b1c20fe0f973bdebeb2745171bace1 (patch)
tree02505a75859b2667b0f90f159470228357c1eb66 /tests/test.lisp
parent957175b7f1bff57477ccd000c956bcbe06d159cf (diff)
optimize gc stack
Diffstat (limited to 'tests/test.lisp')
-rw-r--r--tests/test.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.lisp b/tests/test.lisp
index 26ba788..614fcec 100644
--- a/tests/test.lisp
+++ b/tests/test.lisp
@@ -2,7 +2,7 @@
(let ((name (symbol->string module)))
`(progn
(princ (format "[TEST] %s\n" ,name))
- (load (format "%s.lisp" ,name))
+ (load (format "tests/%s.lisp" ,name))
(princ (format "[PASS] %s\n" ,name)))))
(test-module math)