Skip to content

Commit

Permalink
first attempt at testing under valgrind
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Jan 5, 2024
1 parent e230039 commit 20b599f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/valgrind.supp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"workaround bug in valgrind"
Memcheck:Overlap
fun:__memcpy_chk
obj:/usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so
fun:Perl_pp_entersub
}
35 changes: 35 additions & 0 deletions .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: valgrind

on:
push:
branches:
- '**'
tags-ignore:
- '*'
pull_request:


jobs:
imager:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: install dependencies
run: |
sudo apt-get update ||:
sudo apt-get -y install build-essential libtiff-dev libpng-dev libgif-dev libfreetype6-dev libjpeg-dev libtest-pod-coverage-perl libtest-pod-perl libpod-parser-perl libpod-spell-perl aspell libinline-c-perl libparse-recdescent-perl cpanminus valgrind
# prerequisites for Inline::CPP
sudo apt-get -y install libcapture-tiny-perl libmodule-build-perl
sudo cpanm Inline::CPP
- name: checkout
uses: actions/checkout@v2
- name: configure
run: |
perl Makefile.PL OPTIMIZE="-O0 -g"
- name: build
run: |
make -j2
- name: test
run: |
IMAGER_AUTHOR_TESTING=1 prove -b -e 'valgrind --error-exitcode=1 --suppressions=.github/valgrind.supp -q perl' -r t
for subdir in FT2 GIF ICO JPEG PNG SGI TIFF ; do ( cd $subdir ; echo ":group:$subdir" ; prove -e 'valgrind --error-exitcode=1 --suppressions=../.github/workflows/valgrind.supp -q perl' t ; echo ":endgroup:$subdir" ) done

0 comments on commit 20b599f

Please sign in to comment.