src: consistently use TESTING for internal development tests

This commit is contained in:
Markus F.X.J. Oberhumer
2022-08-27 16:33:57 +02:00
parent 6931a3aa70
commit aa8cdca0a9
3 changed files with 18 additions and 17 deletions
+3 -3
View File
@@ -314,13 +314,13 @@ void show_help(int verbose)
// "\nUPX comes with ABSOLUTELY NO WARRANTY; for details type 'upx -L'.\n"
"");
#if (DEBUG) || (TESTING)
#if DEBUG || TESTING
fg = con_fg(f,FG_RED);
con_fprintf(f,"\nWARNING: this version is compiled with"
#if (DEBUG)
#if DEBUG
" -DDEBUG"
#endif
#if (TESTING)
#if TESTING
" -DTESTING"
#endif
"\n");