Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
q-posev committed Jan 2, 2025
1 parent 1513eec commit a9cdc27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install libhdf5-dev emacs
sudo apt-get install libhdf5-dev emacs libtool
- name: configure with autotools
run: |
Expand Down
4 changes: 2 additions & 2 deletions tests/run_valgrind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ TESTS_C="\
TESTS="$TESTS_C test_f"

for test in $TESTS; do
echo $test
echo "$test"
libtool --mode=execute valgrind \
--leak-check=full \
--show-leak-kinds=all \
--error-exitcode=666 \
--errors-for-leak-kinds=all \
--suppressions=valgrind.supp \
"$test"
"./$test"
done

0 comments on commit a9cdc27

Please sign in to comment.