add additional exp tests to float

This commit is contained in:
alisdair sullivan 2013-02-09 16:32:17 -08:00
parent a883db30ce
commit eaae88f072

View file

@ -83,6 +83,8 @@ naked_floats() ->
++ [{"-0.0", <<"-0.0">>, 0.0, [{float, 0.0}]}]
++ [{"1e0", <<"1e0">>, 1.0, [{float, 1.0}]}]
++ [{"0e0", <<"0e0">>, 0.0, [{float, 0.0}]}]
++ [{"1e4", <<"1e4">>, 1.0e4, [{float, 1.0e4}]}]
++ [{"0e4", <<"0e4">>, 0.0, [{float, 0.0}]}]
++ [{"-1e0", <<"-1e0">>, -1.0, [{float, -1.0}]}].