소스 검색

* disable alglib tests on architectures without hardware fpu, they take too much time

git-svn-id: trunk@20492 -
florian 13 년 전
부모
커밋
6b94087dd4
4개의 변경된 파일28개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      tests/test/alglib/t_testconvunit.pp
  2. 7 0
      tests/test/alglib/t_testcorrunit.pp
  3. 7 0
      tests/test/alglib/t_testfftunit.pp
  4. 7 0
      tests/test/alglib/t_testfhtunit.pp

+ 7 - 0
tests/test/alglib/t_testconvunit.pp

@@ -1,4 +1,6 @@
 { %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;
 uses Sysutils, u_testconvunit;
 
@@ -17,3 +19,8 @@ begin
     end;
     Halt(0);
 end.
+{$else FPUSOFT}
+begin
+end.
+{$endif FPUSOFT}
+

+ 7 - 0
tests/test/alglib/t_testcorrunit.pp

@@ -1,4 +1,6 @@
 { %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;
 uses Sysutils, u_testcorrunit;
 
@@ -17,3 +19,8 @@ begin
     end;
     Halt(0);
 end.
+{$else FPUSOFT}
+begin
+end.
+{$endif FPUSOFT}
+

+ 7 - 0
tests/test/alglib/t_testfftunit.pp

@@ -1,4 +1,6 @@
 { %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;
 
@@ -17,3 +19,8 @@ begin
     end;
     Halt(0);
 end.
+{$else FPUSOFT}
+begin
+end.
+{$endif FPUSOFT}
+

+ 7 - 0
tests/test/alglib/t_testfhtunit.pp

@@ -1,4 +1,6 @@
 { %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;
 
@@ -17,3 +19,8 @@ begin
     end;
     Halt(0);
 end.
+{$else FPUSOFT}
+begin
+end.
+{$endif FPUSOFT}
+