From edb2f5c5c8708d821d1656a0a3ff9b05de18a2db Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 5 Feb 2026 04:34:29 +0000 Subject: [PATCH] dir-locals: run testing, then examples for default compile-command By default we should test all our code for regressions. I'm always running the examples anyway to test new features, so we should have that recipe run afterwards. If a test fails, that's first priority to fix. If an example fails, time to continue working. --- .dir-locals.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.dir-locals.el b/.dir-locals.el index 2970a23..44427e0 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,6 +1,6 @@ ;;; Directory Local Variables -*- no-byte-compile: t -*- ;;; For more information see (info "(emacs) Directory Variables") -((nil . ((compile-command . "make MODE=debug") +((nil . ((compile-command . "make MODE=debug test examples") (+license/license-choice . "GNU General Public License Version 2"))) (c-mode . ((mode . clang-format))))