Skip to content

Commit c1bf4c3

Browse files
committed
[flang] Fix one Unexpectedly Passed test on X86
The test case, kinds04_q10.f90, should run only for X86. Now it is unexpected passed since 8686ff1. Add "-triple x86_64-unknown-linux-gnu" so that the test is for testing the target X86 linux.
1 parent b483349 commit c1bf4c3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

flang/test/Semantics/kinds04_q10.f90

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
! RUN: %python %S/test_errors.py %s %flang_fc1
1+
! RUN: %python %S/test_errors.py %s %flang_fc1 -triple x86_64-unknown-linux-gnu
22
! C716 If both kind-param and exponent-letter appear, exponent-letter
33
! shall be E. (As an extension we also allow an exponent-letter which matches
44
! the kind-param)
@@ -9,9 +9,7 @@
99
! 10-byte extended precision
1010
! REQUIRES: x86-registered-target
1111
! UNSUPPORTED: system-windows
12-
! klausler: Currently failing due to unexpected or missing warnings in some
13-
! configurations like aarch64, so disabling test.
14-
! XFAIL: *
12+
1513
subroutine s(var)
1614
real :: realvar1 = 4.0E6_4
1715
real :: realvar2 = 4.0D6

0 commit comments

Comments
 (0)