clean up old samples; mark md_c_helpers with an error; remove c helper tests

This commit is contained in:
Allen Webster
2021-09-01 19:01:27 -07:00
parent 4452663046
commit a2766a2e0c
20 changed files with 30 additions and 1467 deletions
+28 -23
View File
@@ -28,28 +28,6 @@ load_paths =
command_list =
{
{
.name = "build",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "build.bat", .os = "win" },
},
},
{
.name = "build_with_clang",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "build_with_clang.bat", .os = "win" },
},
},
{
.name = "all_dev_checks",
.out = "*compilation*",
@@ -63,9 +41,36 @@ command_list =
{ "bin/all_dev_checks.sh", .os = "mac" },
},
},
{
.name = "build_tests",
.out = "*compilation*",
.footer_panel = true,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "git_bash bin\\build_tests.sh", .os = "win" },
{ "bin/build_tests.sh", .os = "linux" },
{ "bin/build_tests.sh", .os = "mac" },
},
},
{
.name = "run_tests",
.out = "*run*",
.footer_panel = false,
.save_dirty_files = true,
.cursor_at_end = false,
.cmd =
{
{ "git_bash bin\\run_tests.sh", .os = "win" },
{ "bin/run_tests.sh", .os = "linux" },
{ "bin/run_tests.sh", .os = "mac" },
},
},
};
fkey_command[1] = "all_dev_checks";
fkey_command[1] = "build_tests";
fkey_command[2] = "run_tests";
fkey_command[8] = "build";
fkey_command[9] = "build_with_clang";