mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 18:09:20 +02:00
* disable alglib tests on architectures without hardware fpu, they take too much time
git-svn-id: trunk@20492 -
This commit is contained in:
parent
5b03826549
commit
6b94087dd4
@ -1,4 +1,6 @@
|
|||||||
{ %opt=-Mdelphi -Sa }
|
{ %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_testconvunit;
|
program t_testconvunit;
|
||||||
uses Sysutils, u_testconvunit;
|
uses Sysutils, u_testconvunit;
|
||||||
|
|
||||||
@ -17,3 +19,8 @@ begin
|
|||||||
end;
|
end;
|
||||||
Halt(0);
|
Halt(0);
|
||||||
end.
|
end.
|
||||||
|
{$else FPUSOFT}
|
||||||
|
begin
|
||||||
|
end.
|
||||||
|
{$endif FPUSOFT}
|
||||||
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{ %opt=-Mdelphi -Sa }
|
{ %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_testcorrunit;
|
program t_testcorrunit;
|
||||||
uses Sysutils, u_testcorrunit;
|
uses Sysutils, u_testcorrunit;
|
||||||
|
|
||||||
@ -17,3 +19,8 @@ begin
|
|||||||
end;
|
end;
|
||||||
Halt(0);
|
Halt(0);
|
||||||
end.
|
end.
|
||||||
|
{$else FPUSOFT}
|
||||||
|
begin
|
||||||
|
end.
|
||||||
|
{$endif FPUSOFT}
|
||||||
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{ %opt=-Mdelphi -Sa }
|
{ %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;
|
program t_testfftunit;
|
||||||
uses Sysutils, u_testfftunit;
|
uses Sysutils, u_testfftunit;
|
||||||
|
|
||||||
@ -17,3 +19,8 @@ begin
|
|||||||
end;
|
end;
|
||||||
Halt(0);
|
Halt(0);
|
||||||
end.
|
end.
|
||||||
|
{$else FPUSOFT}
|
||||||
|
begin
|
||||||
|
end.
|
||||||
|
{$endif FPUSOFT}
|
||||||
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
{ %opt=-Mdelphi -Sa }
|
{ %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;
|
program t_testfhtunit;
|
||||||
uses Sysutils, u_testfhtunit;
|
uses Sysutils, u_testfhtunit;
|
||||||
|
|
||||||
@ -17,3 +19,8 @@ begin
|
|||||||
end;
|
end;
|
||||||
Halt(0);
|
Halt(0);
|
||||||
end.
|
end.
|
||||||
|
{$else FPUSOFT}
|
||||||
|
begin
|
||||||
|
end.
|
||||||
|
{$endif FPUSOFT}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user