mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
27 lines
486 B
ObjectPascal
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_testfftunit;
|
|
uses Sysutils, u_testfftunit;
|
|
|
|
begin
|
|
Randomize();
|
|
try
|
|
if not testfftunit_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}
|
|
|