Skip to content

Commit

Permalink
tests: Disable valgrind on i386
Browse files Browse the repository at this point in the history
It started to SIGILL on current Debian testing, and I don't have the
skill or interest to debug this.
  • Loading branch information
martinpitt committed Dec 14, 2023
1 parent 508a7d8 commit 0ed6167
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/run-apt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ else
DESTDIR=/tmp/inst meson install
fi
meson test -v --num-processes=1
meson test -v --num-processes=1 --setup valgrind --no-suite fails-valgrind
# valgrind is broken on i386
if [ "\$(dpkg --print-architecture)" = "amd64" ]; then
meson test -v --num-processes=1 --setup valgrind --no-suite fails-valgrind
fi
if [ "\$coverage" = true ]; then
ninja coverage-text
Expand Down

2 comments on commit 0ed6167

@thesamesam
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@martinpitt
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the pointer @thesamesam !

Please sign in to comment.