phased-executor #4

Merged
zack merged 5 commits from phased-executor into master 2026-04-03 01:53:24 +00:00
Showing only changes of commit fa3fee52f6 - Show all commits

View File

@@ -5,32 +5,37 @@
{ {
"label": "Test many_bits", "label": "Test many_bits",
"command": "odin test many_bits -out=out/debug/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", "label": "Test ring",
"command": "odin test ring -out=out/debug/test_ring", "command": "odin test ring -out=out/debug/test_ring",
"cwd": "$ZED_WORKTREE_ROOT" "cwd": "$ZED_WORKTREE_ROOT",
}, },
{ {
"label": "Test levsort", "label": "Test levsort",
"command": "odin test levsort -out=out/debug/test_levsort", "command": "odin test levsort -out=out/debug/test_levsort",
"cwd": "$ZED_WORKTREE_ROOT" "cwd": "$ZED_WORKTREE_ROOT",
}, },
{ {
"label": "Test levsync", "label": "Test levsync",
"command": "odin test levsync -out=out/debug/test_levsync", "command": "odin test levsync -out=out/debug/test_levsync",
"cwd": "$ZED_WORKTREE_ROOT" "cwd": "$ZED_WORKTREE_ROOT",
}, },
{ {
"label": "Test levmath", "label": "Test levmath",
"command": "odin test levmath -out=out/debug/test_levmath", "command": "odin test levmath -out=out/debug/test_levmath",
"cwd": "$ZED_WORKTREE_ROOT" "cwd": "$ZED_WORKTREE_ROOT",
}, },
{ {
"label": "Test phased_executor", "label": "Test phased_executor",
"command": "odin test phased_executor -out=out/debug/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 ------------------------ // ----- LMDB Examples ------------------------
@@ -38,7 +43,7 @@
{ {
"label": "Run lmdb example", "label": "Run lmdb example",
"command": "odin run vendor/lmdb/examples -debug -out=out/debug/lmdb-examples", "command": "odin run vendor/lmdb/examples -debug -out=out/debug/lmdb-examples",
"cwd": "$ZED_WORKTREE_ROOT" "cwd": "$ZED_WORKTREE_ROOT",
}, },
// --------------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------------
// ----- Other ------------------------ // ----- Other ------------------------
@@ -46,6 +51,6 @@
{ {
"label": "Run debug", "label": "Run debug",
"command": "odin run debug -debug -out=out/debug/debug", "command": "odin run debug -debug -out=out/debug/debug",
"cwd": "$ZED_WORKTREE_ROOT" "cwd": "$ZED_WORKTREE_ROOT",
} },
] ]