From: Jérémie Galarneau Date: Wed, 19 Apr 2023 21:48:25 +0000 (-0400) Subject: Tests: enable test_callstack on 32-bit x86 X-Git-Url: https://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=ffce811cff28f0c357c1edc2b06cf10d2cda21c4 Tests: enable test_callstack on 32-bit x86 The test application used by test_callstack defines syscall stubs (instead of using the libc) for both 32 and 64 bit variants of x86. This limits the architectures that can run this test. However, the `uname` check is erroneous as it assumes that `uname -m` will return x86 for both architectures. It doesn't; it returns i386 or i686 (and I presume others) for 32-bit kernels. As such, the check is modified to check for '86' which, as far as I know, doesn't clash with other architectures. Signed-off-by: Jérémie Galarneau Change-Id: I267a81fadb2f1db6b135c6886ae5700184f2ae5b --- diff --git a/tests/regression/kernel/test_callstack b/tests/regression/kernel/test_callstack index cd853ecde..cf39089af 100755 --- a/tests/regression/kernel/test_callstack +++ b/tests/regression/kernel/test_callstack @@ -120,8 +120,8 @@ function test_kernel_callstack() rm -rf "$TRACE_PATH" } -# Only run userspace callstack test on x86 -uname -m | grep -E "x86" >/dev/null 2>&1 +# Only run userspace callstack test on x86 (32 and 64 variants) +uname -m | grep "86" >/dev/null 2>&1 if test $? == 0; then NUM_TESTS=$((NUM_TESTS+10)) RUN_USERSPACE_TEST=1