diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-10-14 15:11:15 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-14 09:11:15 +0200 |
| commit | 3d0423acf703be7e0e7b004ee85630f6684bf72e (patch) | |
| tree | ffd0958823f0cd8a4a2ac2cccfea53ed6ff2350d /src/include/debug.h | |
| parent | 3ad0ddfe880ee2edbc6cd05ce9cb8acb82b34331 (diff) | |
| download | box64-3d0423acf703be7e0e7b004ee85630f6684bf72e.tar.gz box64-3d0423acf703be7e0e7b004ee85630f6684bf72e.zip | |
Added preliminary unit test runner (#3045)
* Added preliminary unit test runner * Set .text section address * Added support for added custom memory regions * Move json.h to include * Display banner * Added support for custom memory data * Added the ability to include path in nasm * Print env variables
Diffstat (limited to 'src/include/debug.h')
| -rw-r--r-- | src/include/debug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/debug.h b/src/include/debug.h index eb0ef7d1..2c7e1a62 100644 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -28,6 +28,7 @@ extern int box64_steamcmd; extern int box64_wine; extern int box64_musl; extern int box64_isglibc234; // is the program linked with glibc 2.34+ +extern int box64_unittest_mode; extern uintptr_t fmod_smc_start, fmod_smc_end; // to handle libfmod (from Unreal) SMC (self modifying code) extern uint32_t default_gs, default_fs; extern int box64_tcmalloc_minimal; // when using tcmalloc_minimal |