From 7700610d934f0ae229c70da04a92ffb67d03679a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodri=CC=81guez=20Troitin=CC=83o?= Date: Thu, 3 Aug 2023 22:33:33 -0700 Subject: [PATCH] [test] Mark test as REQUIRES differenciable_programming Test tries to import `_Differenciation`, but is not marked as requiring that feature to be available, so it will fail to pass for people that do not compile with differenciable programming enabled. --- test/IRGen/debug_scope_distinct.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/IRGen/debug_scope_distinct.swift b/test/IRGen/debug_scope_distinct.swift index ee3059a2bc84e..1d92af114a931 100644 --- a/test/IRGen/debug_scope_distinct.swift +++ b/test/IRGen/debug_scope_distinct.swift @@ -1,3 +1,5 @@ +// REQUIRES: differentiable_programming + // RUN: %empty-directory(%t) // RUN: %target-swiftc_driver -DM -emit-module -emit-module-path %t/M.swiftmodule %s -module-name M // RUN: %target-swiftc_driver -O -g -I %t -c %s -emit-ir -o - | %FileCheck %s