소스 검색

* explicitely ignore the TestIntfMethods test if TVirtualInterface is not supported

git-svn-id: trunk@42710 -
svenbarth 6 년 전
부모
커밋
16f47fbee3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/rtl-objpas/tests/tests.rtti.impl.pas

+ 1 - 1
packages/rtl-objpas/tests/tests.rtti.impl.pas

@@ -569,7 +569,7 @@ begin
     intf := TVirtualInterface.Create(PTypeInfo(TypeInfo(ITestInterface)), {$ifdef fpc}@{$endif}OnHandleIntfMethod) as ITestInterface;
   except
     on e: ENotImplemented do
-      Exit;
+      Ignore('TVirtualInterface not supported for ' + {$I %FPCTARGETCPU%} + '-' + {$I %FPCTARGETOS%});
   end;
   Check(Assigned(intf), 'ITestInterface instance is Nil');