From 8a5f36fe748f3146f6cbe9b0763c24837325a954 Mon Sep 17 00:00:00 2001 From: James Sumners <321201+jsumners@users.noreply.github.com> Date: Fri, 10 Nov 2023 12:10:46 -0500 Subject: [PATCH] test: remove unused file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This removes a source file that got re-added via a rebase. It seems somewhere around change set https://github.com/nodejs/node/commit/178dff255fa9bdfdd02c44b5707ef021747f8553 `entry_point.c` was removed, and rebase https://github.com/nodejs/node/pull/48740/commits/0b6e16f1ae3bb8a1c5afeb1496095b8d807ff4c7 added it back. The review of https://github.com/nodejs/node/pull/48740 overlooked this and the file got re-committed. PR-URL: https://github.com/nodejs/node/pull/50528 Reviewed-By: Luigi Pinca Reviewed-By: Chengzhong Wu Reviewed-By: Vladimir Morozov Reviewed-By: Tobias Nießen --- test/js-native-api/test_cannot_run_js/entry_point.c | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 test/js-native-api/test_cannot_run_js/entry_point.c diff --git a/test/js-native-api/test_cannot_run_js/entry_point.c b/test/js-native-api/test_cannot_run_js/entry_point.c deleted file mode 100644 index 6b7b50a38c9535..00000000000000 --- a/test/js-native-api/test_cannot_run_js/entry_point.c +++ /dev/null @@ -1,7 +0,0 @@ -#include - -EXTERN_C_START -napi_value Init(napi_env env, napi_value exports); -EXTERN_C_END - -NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)