From: Sergey Bronnikov via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Kaplun <skaplun@tarantool.org>, Sergey Bronnikov <estetus@gmail.com> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit 3/4][v2] OSX/iOS/ARM64: Fix generation of Mach-O object files. Date: Thu, 13 Jun 2024 18:50:47 +0300 [thread overview] Message-ID: <2a32d622-cbeb-46f3-8dd7-aaa6f1daf7a2@tarantool.org> (raw) In-Reply-To: <052764ac-c566-4551-81e0-777c60cc7845@tarantool.org> [-- Attachment #1: Type: text/plain, Size: 1144 bytes --] Sergey, On 16.04.2024 18:29, Sergey Bronnikov via Tarantool-patches wrote: <snipped> >> Minor: we can use `subtest.name` as the definition of the `hw_arch` in the >> `build_and_check_mach_o()`, so it helps to avoid duplication of arch >> usage. >> >> Matter of taste. >> Feel free to ignore. > ignored removed additional argument with `hw_arch` and replaced with subtest.name: @@ -293,7 +295,8 @@ local SUM_CPUSUBTYPE = { -- $ luajit -b -o osx -a arm64 empty.lua empty.o -- $ lipo -archs empty.o -- x86_64 arm64 -local function build_and_check_mach_o(subtest, hw_arch) +local function build_and_check_mach_o(subtest) + local hw_arch = subtest.name assert(hw_arch == 'arm' or hw_arch == 'arm64') subtest:plan(4) @@ -341,7 +344,7 @@ local function build_and_check_mach_o(subtest, hw_arch) 'cpusubtype is correct in Mach-O') end -test:test('arm', build_and_check_mach_o, 'arm') -test:test('arm64', build_and_check_mach_o, 'arm64') +test:test('arm', build_and_check_mach_o) +test:test('arm64', build_and_check_mach_o) test:done(true) >>> + >>> +test:done(true) >>> -- >>> 2.34.1 >>> [-- Attachment #2: Type: text/html, Size: 2524 bytes --]
next prev parent reply other threads:[~2024-06-13 15:50 UTC|newest] Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-04-11 13:22 [Tarantool-patches] [PATCH luajit 0/4][v2] Mach-O generation fixes Sergey Bronnikov via Tarantool-patches 2024-04-11 13:22 ` [Tarantool-patches] [PATCH luajit 1/4][v2] ci: add a workflow for testing with AVX512 Sergey Bronnikov via Tarantool-patches 2024-04-12 10:27 ` Sergey Kaplun via Tarantool-patches 2024-04-16 11:53 ` Sergey Bronnikov via Tarantool-patches 2024-04-18 8:24 ` Sergey Kaplun via Tarantool-patches 2024-05-05 12:29 ` Maxim Kokryashkin via Tarantool-patches 2024-06-14 13:55 ` Sergey Bronnikov via Tarantool-patches 2024-06-14 15:24 ` Sergey Bronnikov via Tarantool-patches 2024-04-11 13:22 ` [Tarantool-patches] [PATCH luajit 2/4][v2] test: introduce a helper read_file Sergey Bronnikov via Tarantool-patches 2024-04-12 10:47 ` Sergey Kaplun via Tarantool-patches 2024-04-16 12:02 ` Sergey Bronnikov via Tarantool-patches 2024-06-20 12:14 ` Sergey Bronnikov via Tarantool-patches 2024-04-11 13:22 ` [Tarantool-patches] [PATCH luajit 3/4][v2] OSX/iOS/ARM64: Fix generation of Mach-O object files Sergey Bronnikov via Tarantool-patches 2024-04-12 11:19 ` Sergey Kaplun via Tarantool-patches 2024-04-16 15:29 ` Sergey Bronnikov via Tarantool-patches 2024-06-13 15:50 ` Sergey Bronnikov via Tarantool-patches [this message] 2024-04-11 13:22 ` [Tarantool-patches] [PATCH luajit 4/4][v2] OSX/iOS/ARM64: Fix bytecode embedding in Mach-O object file Sergey Bronnikov via Tarantool-patches 2024-04-12 11:27 ` Sergey Kaplun via Tarantool-patches 2024-06-13 15:40 ` Sergey Bronnikov via Tarantool-patches 2024-06-13 15:47 ` Sergey Bronnikov via Tarantool-patches 2024-06-20 10:15 ` [Tarantool-patches] [PATCH luajit 0/4][v2] Mach-O generation fixes Sergey Kaplun via Tarantool-patches 2024-07-09 8:07 ` 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=2a32d622-cbeb-46f3-8dd7-aaa6f1daf7a2@tarantool.org \ --to=tarantool-patches@dev.tarantool.org \ --cc=estetus@gmail.com \ --cc=sergeyb@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit 3/4][v2] OSX/iOS/ARM64: Fix generation of Mach-O object files.' \ /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