From fa3fee52f695ea6d0ff7f3c36601b616635a646e Mon Sep 17 00:00:00 2001 From: Zachary Levy Date: Thu, 2 Apr 2026 18:24:38 -0700 Subject: [PATCH] Added test all task --- .zed/tasks.json | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/.zed/tasks.json b/.zed/tasks.json index c24534c..8fc5867 100644 --- a/.zed/tasks.json +++ b/.zed/tasks.json @@ -5,32 +5,37 @@ { "label": "Test many_bits", "command": "odin test many_bits -out=out/debug/test_many_bits", - "cwd": "$ZED_WORKTREE_ROOT" + "cwd": "$ZED_WORKTREE_ROOT", }, { "label": "Test ring", "command": "odin test ring -out=out/debug/test_ring", - "cwd": "$ZED_WORKTREE_ROOT" + "cwd": "$ZED_WORKTREE_ROOT", }, { "label": "Test levsort", "command": "odin test levsort -out=out/debug/test_levsort", - "cwd": "$ZED_WORKTREE_ROOT" + "cwd": "$ZED_WORKTREE_ROOT", }, { "label": "Test levsync", "command": "odin test levsync -out=out/debug/test_levsync", - "cwd": "$ZED_WORKTREE_ROOT" + "cwd": "$ZED_WORKTREE_ROOT", }, { "label": "Test levmath", "command": "odin test levmath -out=out/debug/test_levmath", - "cwd": "$ZED_WORKTREE_ROOT" + "cwd": "$ZED_WORKTREE_ROOT", }, { "label": "Test phased_executor", "command": "odin test phased_executor -out=out/debug/test_phased_executor", - "cwd": "$ZED_WORKTREE_ROOT" + "cwd": "$ZED_WORKTREE_ROOT", + }, + { + "label": "Test all", + "command": "odin test many_bits -out=out/debug/test_many_bits && odin test ring -out=out/debug/test_ring && odin test levsort -out=out/debug/test_levsort && odin test levsync -out=out/debug/test_levsync && odin test levmath -out=out/debug/test_levmath && odin test phased_executor -out=out/debug/test_phased_executor", + "cwd": "$ZED_WORKTREE_ROOT", }, // --------------------------------------------------------------------------------------------------------------------- // ----- LMDB Examples ------------------------ @@ -38,7 +43,7 @@ { "label": "Run lmdb example", "command": "odin run vendor/lmdb/examples -debug -out=out/debug/lmdb-examples", - "cwd": "$ZED_WORKTREE_ROOT" + "cwd": "$ZED_WORKTREE_ROOT", }, // --------------------------------------------------------------------------------------------------------------------- // ----- Other ------------------------ @@ -46,6 +51,6 @@ { "label": "Run debug", "command": "odin run debug -debug -out=out/debug/debug", - "cwd": "$ZED_WORKTREE_ROOT" - } + "cwd": "$ZED_WORKTREE_ROOT", + }, ]