summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw8187.pp
blob: 07bb4f9587016d11084ff01ef43681abd97a983d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
  LongTimeFormat:='hh:nn:ss';
  CheckTime;
end.