fpc/tests/test/alglib/t_testfhtunit.pp
2012-03-10 13:45:37 +00:00

27 lines
486 B
ObjectPascal

{ %opt=-Mdelphi -Sa }
{ don't run this test when no hardware fpu is available, it would take a lot of time }
{$ifndef FPUSOFT}
program t_testfhtunit;
uses Sysutils, u_testfhtunit;
begin
Randomize();
try
if not testfhtunit_test_silent() then
begin
//WriteLn('*');
Halt(1);
end;
except on E: Exception do
begin
Halt(2);
end;
end;
Halt(0);
end.
{$else FPUSOFT}
begin
end.
{$endif FPUSOFT}