<div dir="ltr"><div>Hi,</div><div><br></div><div>clang_inline_opt.swift test case is failing on ppc64le with following error:</div><div><br></div><div>/root/swift-source/swift/test/IRGen/clang_inline_opt.swift:10:11: error: expected string not found in input<br>// CHECK: define internal i32 @return7() [[CLANG_ATTRS:#[0-9]+]] {<br>          ^<br>&lt;stdin&gt;:1:1: note: scanning from here<br>; ModuleID = &#39;-&#39;<br>^<br>&lt;stdin&gt;:34:1: note: possible intended match here<br>define internal zeroext i32 @return7() #1 {<br>^</div><div><br></div><div>On ppc64le, following change is required to the CHECK string:</div><div>// CHECK: define internal zeroext i32 @return7() [[CLANG_ATTRS:#[0-9]+]] {</div><div><br></div><div>The original string is:</div><div>// CHECK: define internal i32 @return7() [[CLANG_ATTRS:#[0-9]+]] {</div><div><br></div><div>How do I add a new CHECK to this file? I tried using CHECK-powerpc64le but that doesn&#39;t work.</div><div><br></div><div>Second alternative is to disable this test on ppc64le. For this I tried to introduce following 2 lines to the clang_inline_opt.swift file by looking at other similar files:</div><div>// REQUIRES: CPU=i386 || CPU=x86_64<br>// XFAIL: Linux</div><div><br></div><div>But this too is not working, How do I make this test skip on ppc64le otherwise?</div><div><br></div><div>Thanks,</div><div>Atul.<br></div></div>