소스 검색

* fixed for comp = int64

Jonas Maebe 22 년 전
부모
커밋
15698ca7b3
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      tests/webtbs/tw2129.pp

+ 5 - 1
tests/webtbs/tw2129.pp

@@ -33,9 +33,13 @@ begin
   dbl1 := -1e-128;
   comp1 := comp(dbl1);
   str(comp1,s);
+{$ifdef cpui386}
   if s<>'-6.53142228756617E+0018' then
+{$else cpui386}
+  if s<>'-6531422287566170215' then
+{$endif cpui386}
     begin
       writeln('error');
       halt(1);
     end;
-end.
+end.