From 013f8e08d5d937d184a2e368e6758a5f1f8bf36b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 9 Dec 2017 14:37:43 -0500 Subject: [PATCH] Fix make test-* tasks for running specific tests --- core/autoload/test.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/test.el b/core/autoload/test.el index c8c4035b5..01daf16cc 100644 --- a/core/autoload/test.el +++ b/core/autoload/test.el @@ -16,7 +16,7 @@ If neither is available, run all tests in all enabled modules." (doom-initialize-modules nil)) ;; collect targets (cond ((and argv (equal (car argv) "--")) - (cl-loop for arg in argv + (cl-loop for arg in (cdr argv) if (equal arg "core") do (push (expand-file-name "test/" doom-core-dir) targets) else