test: debug symbols generation

This commit is contained in:
Li Jie
2024-09-13 20:23:56 +08:00
parent d6f87a8254
commit db128dbc40
2 changed files with 69 additions and 0 deletions

View File

@@ -62,6 +62,10 @@ func EnableDebugSymbols() {
debugSymbols = true
}
func DisableDebugSymbols() {
debugSymbols = false
}
func DebugSymbols() bool {
return debugSymbols
}