Browse Source

Allow to pass custom valgrind args

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 2 years ago
parent
commit
fd2c570f22
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 7 additions and 1 deletions
  1. +6
    -0
      sources/libs/kxstudio-build-scripts/debian/changelog
  2. +1
    -1
      sources/libs/kxstudio-build-scripts/kxstudio-audio-plugin.sh

+ 6
- 0
sources/libs/kxstudio-build-scripts/debian/changelog View File

@@ -1,3 +1,9 @@
kxstudio-build-scripts (10) focal; urgency=medium

* Allow to pass custom valgrind args

-- falkTX <falktx@falktx.com> Sun, 29 May 2022 00:05:47 +0100

kxstudio-build-scripts (9) focal; urgency=medium

* Allow to ignore lv2lint and lto


+ 1
- 1
sources/libs/kxstudio-build-scripts/kxstudio-audio-plugin.sh View File

@@ -26,7 +26,7 @@ fi
CARLA_BRIDGE_NATIVE_BIN=/opt/kxstudio/lib/carla/carla-bridge-native
CARLA_DISCOVERY_NATIVE_BIN=/opt/kxstudio/lib/carla/carla-discovery-native

VALRIND_BIN="valgrind --error-exitcode=255 --leak-check=full --track-origins=yes --suppressions=$(dirname ${0})/kxstudio-audio-plugin.supp"
VALRIND_BIN="valgrind --error-exitcode=255 --leak-check=full --track-origins=yes --suppressions=$(dirname ${0})/kxstudio-audio-plugin.supp ${VALGRIND_EXTRA_ARGS}"
VALRIND_DISCOVERY_BIN="${VALRIND_BIN} ${CARLA_DISCOVERY_NATIVE_BIN}"

# skip main valgrind test on armhf, incomplete syscall support


Loading…
Cancel
Save