Shell: add basic printf test

This commit is contained in:
Bananymous 2023-08-16 10:42:53 +03:00
parent 569e76a848
commit ed5f4d64a8
1 changed files with 9 additions and 0 deletions

View File

@ -326,6 +326,15 @@ int execute_command(BAN::Vector<BAN::String>& args)
return 1;
}
}
else if (args.front() == "printf-test"sv)
{
printf(" 0.0: %f\n", 0.0f);
printf(" 123.0: %f\n", 123.0f);
printf(" 0.123: %f\n", 0.123f);
printf(" NAN: %f\n", NAN);
printf("+INF: %f\n", INFINITY);
printf("-INF: %f\n", -INFINITY);
}
else if (args.front() == "cd"sv)
{
if (args.size() > 2)