From 578835acbe96df41c569952b78a2944be4b672ae Mon Sep 17 00:00:00 2001 From: Sergey Bronnikov Date: Thu, 5 Dec 2024 15:39:19 +0300 Subject: [PATCH] test: small fixes in gh-8594-sysprof-ffunc-crash - Fix a typo in a comment. - Replace `skip_all()` with `skip()` because it is strange to skip the overall test group inside a testcase. Reviewed-by: Maxim Kokryashkin Reviewed-by: Sergey Kaplun Signed-off-by: Sergey Kaplun (cherry picked from commit a272ba9ba392f00ac060c8c0cdc647f767801ba2) --- test/tarantool-c-tests/gh-8594-sysprof-ffunc-crash.test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tarantool-c-tests/gh-8594-sysprof-ffunc-crash.test.c b/test/tarantool-c-tests/gh-8594-sysprof-ffunc-crash.test.c index cf1d815a0b..a8de33581f 100644 --- a/test/tarantool-c-tests/gh-8594-sysprof-ffunc-crash.test.c +++ b/test/tarantool-c-tests/gh-8594-sysprof-ffunc-crash.test.c @@ -17,7 +17,7 @@ /* * XXX: The test is *very* Linux/x86_64 specific. Fortunately, so - * does the sampling profiler. is needed for LUAJIT_OS + * does the sampling profiler. is needed for LUAJIT_OS * and LUAJIT_TARGET. */ #include "lj_arch.h" @@ -270,7 +270,7 @@ static int test_tostring_call(void *ctx) static int test_tostring_call(void *ctx) { - return skip_all("sysprof is implemented for Linux/x86_64 only"); + return skip("sysprof is implemented for Linux/x86_64 only"); } #endif /* LUAJIT_OS == LUAJIT_OS_LINUX && LUAJIT_TARGET == LUAJIT_ARCH_X64 */