Skip to content

Commit

Permalink
CI: Fix backend test after change in previous commit
Browse files Browse the repository at this point in the history
The same CFLAGS change need to be applied to backend test.
  • Loading branch information
mbroz committed Aug 4, 2024
1 parent 7c992fa commit d5fb76a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitlab/ci/compilation-gcc.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@ test-gcc-fanalyzer-backends:
- lib/crypto_backend/*
script:
- DEBIAN_FRONTEND=noninteractive apt-get -yq install libgcrypt20-dev libnss3-dev nettle-dev libmbedtls-dev
- export CFLAGS="-Wall -Werror -g -O0 -fanalyzer -fdiagnostics-path-format=separate-events"
- ./autogen.sh
- echo "Configuring with crypto backend $BACKENDS"
- ./configure --with-crypto_backend=$BACKENDS
- ./configure CFLAGS="-Wall -Werror -g -O0 -fanalyzer -fdiagnostics-path-format=separate-events" --host=x86_64 --with-crypto_backend=$BACKENDS
- make -j
- make -j check-programs
2 changes: 1 addition & 1 deletion lib/crypto_backend/crypto_backend_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "crypto_backend.h"

/* internal PBKDF2 implementation */
/* Internal PBKDF2 implementation */
int pkcs5_pbkdf2(const char *hash,
const char *P, size_t Plen,
const char *S, size_t Slen,
Expand Down

0 comments on commit d5fb76a

Please sign in to comment.