summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/alglib/t_testfftunit.pp
blob: 0e55b08e5f27748cff76cd5aa1f2446c4794b237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ %opt=-Mdelphi -Sa }
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.