From e9622edd51b719890bbd94265cee47af4b7b01ed Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 8 Jun 2020 18:33:03 -0700 Subject: [PATCH] test: mark test as executable_test This should repair the android bots. --- test/Runtime/environment_variables.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/Runtime/environment_variables.swift b/test/Runtime/environment_variables.swift index 87aa398fe689a..c62a74c4b5e74 100644 --- a/test/Runtime/environment_variables.swift +++ b/test/Runtime/environment_variables.swift @@ -1,6 +1,9 @@ // RUN: %empty-directory(%t) // RUN: %target-build-swift %s -o %t/main // RUN: %target-codesign %t/main + +// REQUIRES: executable_test + // RUN: env %env-SWIFT_DEBUG_HELP=YES %env-SWIFT_DEBUG_SOME_UNKNOWN_VARIABLE=42 %env-SWIFT_DEBUG_ENABLE_METADATA_ALLOCATION_ITERATION=YES %env-SWIFT_DEBUG_IMPLICIT_OBJC_ENTRYPOINT=abc %env-SWIFT_DETERMINISTIC_HASHING=whatever %env-SWIFT_ENABLE_MANGLED_NAME_VERIFICATION=YES %target-run %t/main 2>&1 | %FileCheck %s --dump-input fail // CHECK-DAG: {{Warning: unknown environment variable SWIFT_DEBUG_SOME_UNKNOWN_VARIABLE|Using getenv to read variables. Unknown SWIFT_DEBUG_ variables will not be flagged.}}