From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Bronnikov <sergeyb@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH v2 luajit 5/7] test: shrink LUA_CPATH and {DY}LD_LIBRARY_PATH Date: Tue, 24 Sep 2024 14:28:00 +0300 [thread overview] Message-ID: <ZvKiQHqLc7kqrpX4@root> (raw) In-Reply-To: <4c633d2d-2945-4a4a-9571-742c54f8e620@tarantool.org> Hi, Sergey! Thanks for the review! Fixed your comment and force-pushed the branch. On 24.09.24, Sergey Bronnikov wrote: > Hi, Sergey, > > thanks for the updated patch! > > I'm happy to see how much code was removed. > > See my comments below. > > On 24.09.2024 13:29, Sergey Kaplun wrote: > > This patch sets the unique value of each of these variables for each of > > the tests and only where they are needed. Also, it drops the comment > > about SIP [1] tricks since it is obsolete after > > 29897567ee5ed57e961c730432c056a3dbaa8f09 ("test: stop using > > utils.selfrun in tests"). > > > > [1]:https://support.apple.com/en-us/HT204899 > > > > Resolves tarantool/tarantool#9898 > > --- <snipped> > > + > > + if(LIBS_${test_name}) > > + foreach(path ${LIBS_${test_name}}) > > + # Add the directory where the library is built to the list > > + # with entries for the LUA_CPATH environment variable, so > > + # LuaJIT can find and load it. > > + AppendTestEnvVar(${test_title} > > + LUA_CPATH "${path}/?${CMAKE_SHARED_LIBRARY_SUFFIX}\;" > > + ) > > + # Also, add this directory to the LD_LIBRARY_PATH environment > > + # variable so FFI machinery can find and load it. > > + # XXX: Be noticed that we shouldn't use `"` here to wrap the > > + # variable's content. If we do this, the variable value will > > + # contain `"` at the beginning and the end, so this `"` at the > > + # beginning will be treated as the directory for the entry. > > + # XXX: Since the auxiliary libraries are built as dynamically > > + # loaded modules on MacOS instead of shared libraries as it is > > + # done on Linux and BSD, another environment variable should > > + # be used to guide <ffi.load> while searching the extension. > > + if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") > > + AppendTestEnvVar(${test_title} DYLD_LIBRARY_PATH ${path}:) > > + else() > > + AppendTestEnvVar(${test_title} LD_LIBRARY_PATH ${path}:) > > + endif() > please add unset(LIBS_${test_name}) =================================================================== diff --git a/test/tarantool-tests/CMakeLists.txt b/test/tarantool-tests/CMakeLists.txt index 74086ca4..297d5801 100644 --- a/test/tarantool-tests/CMakeLists.txt +++ b/test/tarantool-tests/CMakeLists.txt @@ -146,6 +146,8 @@ foreach(test_path ${tests}) AppendTestEnvVar(${test_title} LD_LIBRARY_PATH ${path}:) endif() endforeach() + + unset(LIBS_${test_name}) endif() endforeach() =================================================================== > > + endforeach() <snipped> -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2024-09-24 11:28 UTC|newest] Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-09-24 10:29 [Tarantool-patches] [PATCH v2 luajit 0/7] Shrink test env and fix flaky tests Sergey Kaplun via Tarantool-patches 2024-09-24 10:29 ` [Tarantool-patches] [PATCH v2 luajit 1/7] test: move profilers tests to subdirectory Sergey Kaplun via Tarantool-patches 2024-09-24 11:07 ` Sergey Bronnikov via Tarantool-patches 2024-10-11 18:28 ` Maxim Kokryashkin via Tarantool-patches 2024-09-24 10:29 ` [Tarantool-patches] [PATCH v2 luajit 2/7] test: rename <arm64-ccall-fp-convention.test.lua> Sergey Kaplun via Tarantool-patches 2024-09-24 11:07 ` Sergey Bronnikov via Tarantool-patches 2024-10-11 18:29 ` Maxim Kokryashkin via Tarantool-patches 2024-09-24 10:29 ` [Tarantool-patches] [PATCH v2 luajit 3/7] cmake: introduce AppendTestEnvVar macro Sergey Kaplun via Tarantool-patches 2024-09-24 11:07 ` Sergey Bronnikov via Tarantool-patches 2024-10-11 18:30 ` Maxim Kokryashkin via Tarantool-patches 2024-09-24 10:29 ` [Tarantool-patches] [PATCH v2 luajit 4/7] test: shrink LUA_PATH environment variable Sergey Kaplun via Tarantool-patches 2024-09-24 11:15 ` Sergey Bronnikov via Tarantool-patches 2024-09-24 11:33 ` Sergey Kaplun via Tarantool-patches [not found] ` <ZvO5g6ryIcyhM1vg@root> 2024-09-25 7:22 ` Sergey Bronnikov via Tarantool-patches 2024-10-11 18:31 ` Maxim Kokryashkin via Tarantool-patches 2024-09-24 10:29 ` [Tarantool-patches] [PATCH v2 luajit 5/7] test: shrink LUA_CPATH and {DY}LD_LIBRARY_PATH Sergey Kaplun via Tarantool-patches 2024-09-24 11:16 ` Sergey Bronnikov via Tarantool-patches 2024-09-24 11:28 ` Sergey Kaplun via Tarantool-patches [this message] 2024-09-24 14:18 ` Sergey Bronnikov via Tarantool-patches 2024-10-11 18:37 ` Maxim Kokryashkin via Tarantool-patches 2024-10-12 7:00 ` Sergey Kaplun via Tarantool-patches 2024-09-24 10:29 ` [Tarantool-patches] [PATCH v2 luajit 6/7] test: skip flaky tests with enabled table bump Sergey Kaplun via Tarantool-patches 2024-09-24 11:26 ` Sergey Bronnikov via Tarantool-patches 2024-09-24 11:45 ` Sergey Kaplun via Tarantool-patches 2024-09-24 14:17 ` Sergey Bronnikov via Tarantool-patches 2024-10-11 18:38 ` Maxim Kokryashkin via Tarantool-patches 2024-09-24 10:29 ` [Tarantool-patches] [PATCH v2 luajit 7/7] test: set LD_PRELOAD only when necessary Sergey Kaplun via Tarantool-patches 2024-09-24 14:13 ` Sergey Bronnikov via Tarantool-patches 2024-09-24 15:23 ` Sergey Kaplun via Tarantool-patches 2024-09-24 17:41 ` Sergey Bronnikov via Tarantool-patches 2024-10-11 18:46 ` Maxim Kokryashkin via Tarantool-patches 2024-10-18 15:18 ` [Tarantool-patches] [PATCH v2 luajit 0/7] Shrink test env and fix flaky tests Sergey Kaplun via Tarantool-patches
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=ZvKiQHqLc7kqrpX4@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=sergeyb@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v2 luajit 5/7] test: shrink LUA_CPATH and {DY}LD_LIBRARY_PATH' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox