[K/N] Update filecheck tests for different ABIs

This commit is contained in:
Sergey Bogolepov
2021-10-21 16:49:59 +07:00
committed by Space
parent 49fdeb73ee
commit 95bd5fcc4b
3 changed files with 151 additions and 6 deletions
@@ -5900,6 +5900,11 @@ fileCheckTest("filecheck_bce") {
fileCheckTest("filecheck_signext_zeroext0") {
annotatedSource = project.file('filecheck/signext_zeroext0.kt')
if (project.testTarget == 'mingw_x64') {
checkPrefix = "CHECK-WINDOWSX64"
} else if (!target.family.appleFamily && target.architecture == Architecture.ARM64) {
checkPrefix = "CHECK-AAPCS"
}
}
createInterop("filecheck_signext_zeroext_interop_input") {
@@ -5909,6 +5914,11 @@ createInterop("filecheck_signext_zeroext_interop_input") {
fileCheckTest("filecheck_signext_zeroext_interop") {
annotatedSource = project.file('filecheck/signext_zeroext_interop.kt')
interop = "filecheck_signext_zeroext_interop_input"
if (project.testTarget == 'mingw_x64') {
checkPrefix = "CHECK-WINDOWSX64"
} else if (!target.family.appleFamily && target.architecture == Architecture.ARM64) {
checkPrefix = "CHECK-AAPCS"
}
}
fileCheckTest("filecheck_signext_zeroext_objc_export") {