mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 14:19:31 +02:00
parent
d4de54402c
commit
aef82063ec
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -8107,6 +8107,7 @@ tests/webtbs/tw8172.pp svneol=native#text/plain
|
||||
tests/webtbs/tw8177.pp svneol=native#text/plain
|
||||
tests/webtbs/tw8180.pp svneol=native#text/plain
|
||||
tests/webtbs/tw8183.pp svneol=native#text/plain
|
||||
tests/webtbs/tw8187.pp svneol=native#text/plain
|
||||
tests/webtbs/tw8199.pp svneol=native#text/plain
|
||||
tests/webtbs/tw8222.pp svneol=native#text/plain
|
||||
tests/webtbs/tw8222a.pp svneol=native#text/plain
|
||||
|
27
tests/webtbs/tw8187.pp
Normal file
27
tests/webtbs/tw8187.pp
Normal file
@ -0,0 +1,27 @@
|
||||
program testtime_console;
|
||||
|
||||
uses SysUtils;
|
||||
|
||||
Procedure Check(No : Integer; A,B : String);
|
||||
|
||||
begin
|
||||
if A<>B then
|
||||
begin
|
||||
Writeln('Test ',No,' failed: ',A,'<>',B);
|
||||
Halt(No);
|
||||
end;
|
||||
end;
|
||||
|
||||
Procedure CheckTime;
|
||||
|
||||
|
||||
begin
|
||||
Check(1,TimeToStr(0),'00:00:00');
|
||||
Check(2,FormatDateTime('hh:nn:ss',StrToTime('12:00:00 AM')),'00:00:00');
|
||||
Check(3,TimeToStr(StrToTime('12:00:00 AM')),'00:00:00');
|
||||
Check(4,TimeToStr(StrToTime('12:35:00 PM')),'12:35:00');
|
||||
end;
|
||||
|
||||
begin
|
||||
CheckTime;
|
||||
end.
|
Loading…
Reference in New Issue
Block a user