[Tarantool-patches] [PATCH] test: adjust the test name related to PAIRSMM flag

Alexander Turenko alexander.turenko at tarantool.org
Tue Nov 26 19:54:08 MSK 2019


On Tue, Nov 26, 2019 at 06:47:38PM +0300, Igor Munkin wrote:
> The prior name doesn't respect the naming convention used by test-run
> thus this chunk was ignored by our testing machinery.
> 
> Part-of tarantool/tarantool#4560
> 
> Signed-off-by: Igor Munkin <imun at tarantool.org>
> ---
> 
> Branch: https://github.com/tarantool/luajit/tree/imun/test-name-fixup
> Issue: https://github.com/tarantool/tarantool/issues/4560
> 
> 
>  test/{mmpairs_test.lua => mmpairs-tarantool-4560.test.lua} | 0
>  1 file changed, 0 insertions(+), 0 deletions(-)
>  rename test/{mmpairs_test.lua => mmpairs-tarantool-4560.test.lua} (100%)
> 
> diff --git a/test/mmpairs_test.lua b/test/mmpairs-tarantool-4560.test.lua
> similarity index 100%
> rename from test/mmpairs_test.lua
> rename to test/mmpairs-tarantool-4560.test.lua
> -- 
> 2.24.0
> 

Eagle eye!

LGTM.

Please, ensure that the test name will be updated in tarantool (with the
submodule update) only after we'll enable LUAJIT_ENABLE_PAIRSMM macro in
tarantool for luajit's build.

Several comments around are below.

----

Re test itself:

* Use `local` for variables (`tap`, `test`).
* Use `os.exit(test:check() and 0 or 1)` at the end.

The test depends on tarantool indirectly: we (will) set
LUAJIT_ENABLE_PAIRSMM macro in tarantool when building LuaJIT, so the
test formally may not be applicable for luajit itself (despite that it
is placed in the luajit's repo).

I don't see real problems here, to be honest; just feel it a bit less
strict then it maybe should be.

We discussed possible ways to skip the test when it will not be
appropriate with Igor and they are the following.

* mmpairs-tarantool-4560.skipcond Python script that look into some
  generated header (don't know whether luajit has it) to determine
  options with which luajit was built.
* mmpairs-tarantool-4560.skipcond that calls, say, `nm` to deduce build
  flags from symbols in luajit executable.
* Look at _TARANTOOL global variable from the test and do a couple of
  test:skip().

The latter is simplest.

Anyway, it is not very important now and surely should not be part of
this patch. Let's skip all those thoughts or add the simplest check
separately if you wish.

WBR, Alexander Turenko.


More information about the Tarantool-patches mailing list