Skip to content

Commit c0129b2

Browse files
ligurioBuristan
authored andcommitted
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 <[email protected]> Reviewed-by: Sergey Kaplun <[email protected]> Signed-off-by: Sergey Kaplun <[email protected]> (cherry picked from commit a272ba9)
1 parent 8012d3e commit c0129b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/tarantool-c-tests/gh-8594-sysprof-ffunc-crash.test.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/*
1919
* XXX: The test is *very* Linux/x86_64 specific. Fortunately, so
20-
* does the sampling profiler. <lj_arch.> is needed for LUAJIT_OS
20+
* does the sampling profiler. <lj_arch.h> is needed for LUAJIT_OS
2121
* and LUAJIT_TARGET.
2222
*/
2323
#include "lj_arch.h"
@@ -270,7 +270,7 @@ static int test_tostring_call(void *ctx)
270270

271271
static int test_tostring_call(void *ctx)
272272
{
273-
return skip_all("sysprof is implemented for Linux/x86_64 only");
273+
return skip("sysprof is implemented for Linux/x86_64 only");
274274
}
275275

276276
#endif /* LUAJIT_OS == LUAJIT_OS_LINUX && LUAJIT_TARGET == LUAJIT_ARCH_X64 */

0 commit comments

Comments
 (0)