Tests: Fix abi conflict test when building with clang
authorroot <root@ideal-dove>
Fri, 6 Sep 2024 15:55:41 +0000 (15:55 +0000)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 9 Sep 2024 14:22:31 +0000 (10:22 -0400)
commit1f94ee05250ebb2d02b29bc7a402a4f0ff17e3a3
tree383edf544e672fef2ccf53e93d7f25749dd34374
parent7a03e2b0e49c71f09a6e330f626684c5b916295b
Tests: Fix abi conflict test when building with clang

When building lttng-ust with clang, the following tests in
`tests/regression/abi0-conflict/test_abi0_conflict` fail:

```
not ok 12 - dlopen: no-ust app with abi1 and abi0 fails
not ok 14 - dlopen: ust app with abi0 fails
not ok 15 - dlopen: ust app with abi0 and abi1 fails
not ok 16 - dlopen: ust app with abi1 and abi0 fails
```

Cause
=====

With the default optimizations that are applied, clang seems to inline
the `init_uster` function.

Compiling with `-O0` lets the test pass.

Solution
========

Add the noinline attribute to the `init_uster` function in libfakeust0.

Change-Id: I4a3b16da2c8aad1840cb5e878231b63ca4d47618
Signed-off-by: Kienan Stewart <kstewart@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
tests/regression/abi0-conflict/fake-ust.c
This page took 0.024603 seconds and 4 git commands to generate.