Browse Source

* forgot to commit (test for r9623)

git-svn-id: trunk@9821 -
Jonas Maebe 17 years ago
parent
commit
5290a04e33
2 changed files with 10 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 9 0
      tests/webtbs/tw10519.pp

+ 1 - 0
.gitattributes

@@ -7970,6 +7970,7 @@ tests/webtbs/tw10454.pp svneol=native#text/plain
 tests/webtbs/tw1046.pp svneol=native#text/plain
 tests/webtbs/tw10489.pp svneol=native#text/plain
 tests/webtbs/tw1050.pp svneol=native#text/plain
+tests/webtbs/tw10519.pp svneol=native#text/plain
 tests/webtbs/tw10540.pp svneol=native#text/plain
 tests/webtbs/tw1061.pp svneol=native#text/plain
 tests/webtbs/tw10623.pp svneol=native#text/plain

+ 9 - 0
tests/webtbs/tw10519.pp

@@ -0,0 +1,9 @@
+uses sysutils;
+
+var
+  cs:String;
+begin
+  cs:=FormatFloat('0.00000E+0000',52247.9532745);
+  if (cs<>'5.22480E+0004') then
+    halt(1);
+end.