Add success printout to tests to make it easier for robert to tell if they succeeded or not

This commit is contained in:
rexy712 2022-06-30 12:49:48 -07:00
parent eb10cf1375
commit c054600b05
2 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,9 @@
#define LIBREXY_ENABLE_DEBUG_LEVEL 2
#include "rexy/string.hpp"
#include "rexy/allocator.hpp"
#include "rexy/utility.hpp"
#include "rexy/debug_print.hpp"
#include <cstdlib>
#include <cstdio>
@ -356,4 +359,5 @@ int main(){
check_string_insert();
check_string_erase();
check_string_replace();
rexy::debug::print_succ("String test success\n");
}

View File

@ -235,5 +235,6 @@ int main(){
do_alt_form();
do_zero_pad();
do_type_specifiers();
rexy::debug::print_succ("Format test success\n");
}