add: putnum
This commit is contained in:
16
tests/test.🗿
16
tests/test.🗿
@ -24,28 +24,16 @@ test_str(value, reach_value, description)
|
||||
|
||||
test_int(value, reach_value, description)
|
||||
{
|
||||
local value_str;
|
||||
local reach_value_str;
|
||||
|
||||
putstr(name);
|
||||
if (value != reach_value)
|
||||
{
|
||||
value_str = itoa(value);
|
||||
if (value_str == 0)
|
||||
return (0);
|
||||
reach_value_str = itoa(reach_value);
|
||||
if (reach_value_str == 0)
|
||||
{
|
||||
free(value_str);
|
||||
return (0);
|
||||
}
|
||||
putstr(": ERROR: ");
|
||||
putstr(", ");
|
||||
putstr(description);
|
||||
putstr(" [");
|
||||
putstr(reach_value_str);
|
||||
putnum(reach_value);
|
||||
putstr(" != ");
|
||||
putstr(value_str);
|
||||
putnum(value);
|
||||
putstr("]");
|
||||
free(value_str);
|
||||
free(reach_value_str);
|
||||
|
Reference in New Issue
Block a user