diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-03-01 10:35:53 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-03-01 10:35:53 +0530 |
| commit | 96b074de6104161c62e09b2b1a725316dbf1c5f3 (patch) | |
| tree | 0ff68fd7fdf611365a20f718664818f27437e630 /test/justfile | |
| parent | 18268280dc6c0bd44035b53655ae43e9c88245bd (diff) | |
| download | daft-watch-96b074de6104161c62e09b2b1a725316dbf1c5f3.tar.gz daft-watch-96b074de6104161c62e09b2b1a725316dbf1c5f3.zip | |
Add tests for mode state
Diffstat (limited to 'test/justfile')
| -rw-r--r-- | test/justfile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/justfile b/test/justfile index 626e094..5ec1733 100644 --- a/test/justfile +++ b/test/justfile @@ -7,7 +7,10 @@ main: gcc {{TCFLAGS}} ../src/main.c -o {{OUTDIR}}/test_main {{OUTDIR}}/test_main -button: - gcc {{TCFLAGS}} ./button_test.c -o {{OUTDIR}}/test_button - {{OUTDIR}}/test_button +button: (test "button") +mode: (test "mode") + +test source: + gcc {{TCFLAGS}} ./{{source}}_test.c -o {{OUTDIR}}/test_{{source}} + {{OUTDIR}}/test_{{source}} |
