diff options
author | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2005-05-17 22:27:53 +0000 |
---|---|---|
committer | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2005-05-17 22:27:53 +0000 |
commit | 2c8dfc4b225ce028d1354f42040bd9eefb5e445b (patch) | |
tree | 349df9035ee624f1c079ed56d4e186e0fc263fd7 /tests | |
parent | 1a1251e0b985d73ab11ea7c5939af6dd4bba84d9 (diff) | |
download | fpc-2c8dfc4b225ce028d1354f42040bd9eefb5e445b.tar.gz |
* format(%u",[<qword>]); fixed
* made test working
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@13 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests')
-rw-r--r-- | tests/webtbs/tw3973.pp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/webtbs/tw3973.pp b/tests/webtbs/tw3973.pp index c15db49704..c17728c957 100644 --- a/tests/webtbs/tw3973.pp +++ b/tests/webtbs/tw3973.pp @@ -139,6 +139,9 @@ begin WriteLn;
if FailureCount = 0 then
WriteLn('All passed')
- else WriteLn(FailureCount, 'Failures');
- ReadLn;
+ else
+ begin
+ WriteLn(FailureCount, 'Failures');
+ halt(1);
+ end;
end.
|