Usermode/libc - ftoa() fixes, current test set passes
[tpg/acess2.git] / Usermode / Libraries / libc.so_src / TEST_printf.c
index ed78fd6..fe251d9 100644 (file)
@@ -23,9 +23,10 @@ int main(int argc, char *argv[])
        TST("Integer", "%u", 1234);
        
        TST("Float", "%f", 3.1414926535);
+       TST("Float", "%f", 10.0);
        TST("Float", "%.10f", 3.1414926535);
-       TST("Float", "%e", 3.1414926535);
-       TST("Float", "%g", 3.1414926535);
+       TST("Float", "%e", 3.1415926535);
+       TST("Float", "%g", 3.1415926535);
        TST("Float", "%E", 1000000000.00);
        TST("Float", "%a", 16.0);
        TST("Float", "%a", 1024.0);

UCC git Repository :: git.ucc.asn.au