From 54b06f5656afb5fc88cd1bcdd41dacbbf1034146 Mon Sep 17 00:00:00 2001 From: Vladimir Sukharev Date: Mon, 22 Jan 2024 13:15:50 +0100 Subject: [PATCH] [K/N][Tests] Clean up remnants of kt49034 in old infra ^KT-61259 --- .../tests/interop/objc/kt49034/struct/impl.c | 11 ----------- .../tests/interop/objc/kt49034/struct/kt49034.def | 0 .../tests/interop/objc/kt49034/struct/kt49034.h | 11 ----------- 3 files changed, 22 deletions(-) delete mode 100644 kotlin-native/backend.native/tests/interop/objc/kt49034/struct/impl.c delete mode 100644 kotlin-native/backend.native/tests/interop/objc/kt49034/struct/kt49034.def delete mode 100644 kotlin-native/backend.native/tests/interop/objc/kt49034/struct/kt49034.h diff --git a/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/impl.c b/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/impl.c deleted file mode 100644 index 483ce46e494..00000000000 --- a/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/impl.c +++ /dev/null @@ -1,11 +0,0 @@ -#include "kt49034.h" - -struct JSContext { - int field; -}; - -struct JSContext global = { 15 }; - -extern "C" struct JSContext* bar() { - return &global; -} \ No newline at end of file diff --git a/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/kt49034.def b/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/kt49034.def deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/kt49034.h b/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/kt49034.h deleted file mode 100644 index a14ccf4e6e7..00000000000 --- a/kotlin-native/backend.native/tests/interop/objc/kt49034/struct/kt49034.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifdef __cplusplus -extern "C" { -#endif - -struct JSContext; - -struct JSContext* bar(); - -#ifdef __cplusplus -} -#endif \ No newline at end of file