From 6efa9f35d11dda42a01d2e5d02a84a987e35bf2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez=20Troiti=C3=B1o?= Date: Thu, 12 Mar 2020 15:30:30 -0700 Subject: [PATCH] [android][aarch64] Add Android to set of stable ABI testing targets. IRGen/conditional_conformances.swift was failing because Android AArch64 was taking the non ABI stable checks, but generating the ABI stable code. --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit.cfg b/test/lit.cfg index d1c2a2c997b66..48d78e0685e3d 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -699,7 +699,7 @@ if (run_os == 'maccatalyst'): target_os_abi = 'macosx' target_os_is_maccatalyst = "TRUE" config.available_features.add("OS=ios") -if (run_os in ['linux-gnu', 'linux-gnueabihf', 'freebsd', 'windows-cygnus', 'windows-gnu', 'windows-msvc']): +if (run_os in ['linux-gnu', 'linux-gnueabihf', 'freebsd', 'windows-cygnus', 'windows-gnu', 'windows-msvc', 'linux-android']): target_mandates_stable_abi = "TRUE" config.available_features.add('swift_only_stable_abi') config.substitutions.append(('%target-os-abi', target_os_abi))