mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-08 23:08:08 +00:00
pull out test input/exemplar path formation helpers to base; fix torture crash
This commit is contained in:
@@ -3,6 +3,27 @@
|
||||
|
||||
#if BUILD_TESTS
|
||||
|
||||
internal String8
|
||||
test_input_path(Arena *arena, TestCtx *ctx, String8 name)
|
||||
{
|
||||
String8 path = str8f(arena, "%S/%S", ctx->input_data_path, name);
|
||||
return path;
|
||||
}
|
||||
|
||||
internal String8
|
||||
test_input_exe_path(Arena *arena, TestCtx *ctx, String8 name)
|
||||
{
|
||||
String8 path = str8f(arena, "%S/%S%S", ctx->input_data_path, name, program_ext_postfix_from_os(OperatingSystem_CURRENT, 1));
|
||||
return path;
|
||||
}
|
||||
|
||||
internal String8
|
||||
test_exemplar_path(Arena *arena, TestCtx *ctx, String8 name)
|
||||
{
|
||||
String8 path = str8f(arena, "%S/%S", ctx->exemplars_path, name);
|
||||
return path;
|
||||
}
|
||||
|
||||
internal void
|
||||
base_register_test(char *func_name_cstr, TestFunctionType *fn, char *file_path_cstr, int line, int skip)
|
||||
{
|
||||
|
||||
+13
-10
@@ -54,18 +54,21 @@ struct TestInfo
|
||||
global U16 test_infos_count = 0;
|
||||
global TestInfo test_infos[0xffff] = {0};
|
||||
|
||||
internal String8 test_input_path(Arena *arena, TestCtx *ctx, String8 name);
|
||||
internal String8 test_input_exe_path(Arena *arena, TestCtx *ctx, String8 name);
|
||||
internal String8 test_exemplar_path(Arena *arena, TestCtx *ctx, String8 name);
|
||||
internal void base_register_test(char *func_name, TestFunctionType *fn, char *file_path, int line, int skip);
|
||||
|
||||
#define AddTest(name, file_path, line, skip_, ...) \
|
||||
TEST_FUNCTION_DEF(name); \
|
||||
__VA_ARGS__ void add_test__##name(void) { base_register_test(Stringify(name), test__##name, file_path, line, skip_); }
|
||||
TEST_FUNCTION_DEF(name); \
|
||||
__VA_ARGS__ void add_test__##name(void) { base_register_test(Stringify(name), test__##name, file_path, line, skip_); }
|
||||
|
||||
# if COMPILER_MSVC
|
||||
# pragma section(".CRT$XCU", read)
|
||||
# define DeclareTest(name, skip) \
|
||||
/* register test */ AddTest(name, __FILE__, __LINE__, (skip)) \
|
||||
/* alloc function pointer */ __declspec(allocate(".CRT$XCU")) void (*add_test_ptr__##name)(void) = add_test__##name; \
|
||||
/* do not GC test caller */ __pragma(comment(linker, "/include:" Stringify(add_test_ptr__##name)))
|
||||
/* register test */ AddTest(name, __FILE__, __LINE__, (skip)) \
|
||||
/* alloc function pointer */ __declspec(allocate(".CRT$XCU")) void (*add_test_ptr__##name)(void) = add_test__##name; \
|
||||
/* do not GC test caller */ __pragma(comment(linker, "/include:" Stringify(add_test_ptr__##name)))
|
||||
# elif COMPILER_GCC || COMPILER_CLANG
|
||||
// clang and gcc allocate memory for the function pointer automatically
|
||||
# define DeclareTest(name, skip) AddTest(name, __FILE__, __LINE__, (skip), __attribute__((constructor)))
|
||||
@@ -80,14 +83,14 @@ internal void base_register_test(char *func_name, TestFunctionType *fn, char *fi
|
||||
#define SkippedTest(name) DeclareTest(name, 1) TEST_FUNCTION_DEF(name)
|
||||
|
||||
#define TestCheck(c) do { if (!(c)) { \
|
||||
/* record failed check */ ctx->result_out[0] = (TestResult){ .fail_file = __FILE__, .fail_line = __LINE__, .fail_cond = Stringify(c) }; \
|
||||
/* under debugger? -> trap */ if(debugger_is_attached()) { Trap(); } \
|
||||
/* exit test */ return; \
|
||||
/* record failed check */ ctx->result_out[0] = (TestResult){ .fail_file = __FILE__, .fail_line = __LINE__, .fail_cond = Stringify(c) }; \
|
||||
/* under debugger? -> trap */ if(debugger_is_attached()) { Trap(); } \
|
||||
/* exit test */ return; \
|
||||
} } while(0)
|
||||
|
||||
#define TestSkip() do { \
|
||||
ctx->result_out[0] = (TestResult){ .status = TestStatus_Skip }; \
|
||||
return; \
|
||||
ctx->result_out[0] = (TestResult){ .status = TestStatus_Skip }; \
|
||||
return; \
|
||||
} while(0)
|
||||
|
||||
// test log
|
||||
|
||||
@@ -4,13 +4,6 @@
|
||||
////////////////////////////////
|
||||
//~ rjf: Debugger Testing IPC Driving Helpers
|
||||
|
||||
internal String8
|
||||
rd_test__test_binary_path(Arena *arena, TestCtx *ctx, String8 name)
|
||||
{
|
||||
String8 path = str8f(arena, "%S/%S/%S%S", ctx->input_data_path, name, name, program_ext_postfix_from_os(OperatingSystem_CURRENT, 1));
|
||||
return path;
|
||||
}
|
||||
|
||||
internal String8
|
||||
rd_test__raddbg_path(Arena *arena, CmdLine *cmdline)
|
||||
{
|
||||
@@ -114,7 +107,7 @@ rd_test__stepping_regressions(Arena *arena, TestCtx *ctx, String8 target_binary,
|
||||
String8List test_log_strings = {0};
|
||||
|
||||
// rjf: get binary path
|
||||
String8 binary_path = rd_test__test_binary_path(arena, ctx, target_binary);
|
||||
String8 binary_path = test_input_exe_path(arena, ctx, str8f(scratch.arena, "%S/%S", target_binary, target_binary));
|
||||
B32 binary_exists_locally = (properties_from_file_path(binary_path).modified != 0);
|
||||
|
||||
// rjf: if binary does not exist -> skip this test,
|
||||
@@ -233,7 +226,7 @@ rd_test__eval_regressions(Arena *arena, TestCtx *ctx, String8 target_binary, Str
|
||||
String8List test_log_strings = {0};
|
||||
|
||||
// rjf: get binary path
|
||||
String8 binary_path = rd_test__test_binary_path(arena, ctx, target_binary);
|
||||
String8 binary_path = test_input_exe_path(arena, ctx, str8f(scratch.arena, "%S/%S", target_binary, target_binary));
|
||||
B32 binary_exists_locally = (properties_from_file_path(binary_path).modified != 0);
|
||||
|
||||
// rjf: if binary does not exist -> skip this test,
|
||||
|
||||
@@ -1,36 +1,15 @@
|
||||
// Copyright (c) Epic Games Tools
|
||||
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
||||
|
||||
internal String8
|
||||
p2r_test__test_path(Arena *arena, TestCtx *ctx, String8 id, String8 name)
|
||||
{
|
||||
String8 path = str8f(arena, "%S/%S/%S", ctx->input_data_path, id, name);
|
||||
return path;
|
||||
}
|
||||
|
||||
Test(p2r_determinism)
|
||||
{
|
||||
U64 num_repeats_per_pdb = 16;
|
||||
String8 pdb_paths[] =
|
||||
{
|
||||
p2r_test__test_path(arena, ctx, s("mule_main_9ff1e58f"), s("mule_main.pdb")),
|
||||
p2r_test__test_path(arena, ctx, s("mule_main_9ff1e58f"), s("mule_module.pdb")),
|
||||
test_input_path(arena, ctx, s("mule_main_9ff1e58f/mule_main.pdb")),
|
||||
test_input_path(arena, ctx, s("mule_main_9ff1e58f/mule_module.pdb")),
|
||||
};
|
||||
B32 all_pdbs_exist_locally = 1;
|
||||
for EachElement(pdb_idx, pdb_paths)
|
||||
{
|
||||
String8 pdb_path = pdb_paths[pdb_idx];
|
||||
if(properties_from_file_path(pdb_path).modified == 0)
|
||||
{
|
||||
all_pdbs_exist_locally = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!all_pdbs_exist_locally)
|
||||
{
|
||||
TestSkip();
|
||||
}
|
||||
else for EachElement(pdb_idx, pdb_paths)
|
||||
{
|
||||
// rjf: unpack paths, make output directory
|
||||
String8 pdb_path = pdb_paths[pdb_idx];
|
||||
|
||||
@@ -1382,14 +1382,14 @@ t_entry_point(CmdLine *cmdline)
|
||||
if (slow_count > 1) {
|
||||
U64 label_max = 0;
|
||||
U64 layer_max = 0;
|
||||
for EachElement(i, slowest) {
|
||||
for EachIndex(i, slow_count) {
|
||||
Slowest s = slowest[i];
|
||||
label_max = Max(g_sorted_test_infos[s.target_idx]->label.size, label_max);
|
||||
layer_max = Max(g_sorted_test_infos[s.target_idx]->layer.size, layer_max);
|
||||
}
|
||||
|
||||
fprintf(stderr, " \nSlow Tests\n");
|
||||
for EachElement(i, slowest) {
|
||||
for EachIndex(i, slow_count) {
|
||||
Slowest s = slowest[i];
|
||||
if (s.target_idx >= test_infos_count) { break; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user