When running ovniver without LD_LIBRARY_PATH set, the loader couldn't find any ovni installation and therefore was failing to start the program. With this change we set the RUNPATH (not RPATH) of ovniver to the installation libdir, so when no other libovni library is loaded via LD_LIBRARY_PATH the one provided by the same source as ovniver is used. The value of LD_LIBRARY_PATH is also printed so we can determine where it may be loading libovni. Using LD_DEBUG=libs will give more information of the search process. Fixes: https://pm.bsc.es/gitlab/rarias/ovni/-/issues/163
28 lines
1.3 KiB
CMake
28 lines
1.3 KiB
CMake
# Copyright (c) 2022-2023 Barcelona Supercomputing Center (BSC)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
test_emu(flush-overhead.c DISABLED)
|
|
test_emu(flush.c)
|
|
test_emu(sort.c SORT)
|
|
test_emu(sort-flush.c SORT)
|
|
test_emu(empty-sort.c SORT)
|
|
test_emu(sort-first-and-full-ring.c SORT
|
|
SHOULD_FAIL REGEX "cannot find a event previous to clock")
|
|
test_emu(burst-stats.c REGEX "burst stats: median/avg/max = 33/ 33/ 33 ns")
|
|
test_emu(mp-simple.c MP)
|
|
test_emu(version-good.c)
|
|
test_emu(version-bad.c SHOULD_FAIL REGEX "incompatible .* version")
|
|
test_emu(clockgate.c MP SHOULD_FAIL REGEX "detected large clock gate")
|
|
test_emu(no-cpus.c SHOULD_FAIL REGEX "loom .* has no physical CPUs")
|
|
test_emu(sort-cpus-by-loom.c MP)
|
|
test_emu(sort-cpus-by-rank.c MP)
|
|
test_emu(tracedir-subdir.c MP DRIVER "tracedir-subdir.driver.sh")
|
|
test_emu(empty-stream.c SHOULD_FAIL REGEX "model_ovni_finish: thread .* is not dead")
|
|
test_emu(require-bad-version.c SHOULD_FAIL REGEX "unsupported ovni model version (want 666.66.6, have .*)")
|
|
test_emu(require-compat.c REGEX "loading trace in compatibility mode")
|
|
test_emu(require-repeated.c)
|
|
test_emu(thread-crash.c SHOULD_FAIL REGEX "incomplete stream")
|
|
test_emu(flush-tmpdir.c MP DRIVER "flush-tmpdir.driver.sh")
|
|
test_emu(tmpdir-metadata.c MP DRIVER "tmpdir-metadata.driver.sh")
|
|
test_emu(dummy.c NAME "ovniver" DRIVER "ovniver.driver.sh")
|