Skip to content

Commit

Permalink
fix(CryptoTest): disable testEncryptDecryptGCM
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed Dec 6, 2023
1 parent 6b4b067 commit 6228ebe
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# To retry only on timeout set retry_on: timeout
# To retry only on error set retry_on: error
# For more information on the retry action see https://github.com/nick-fields/retry

name: Compile and Testrun

on:
pull_request:
types: [opened]
Expand Down Expand Up @@ -213,7 +216,8 @@ jobs:
CppUnit::TestCaller<ExpireLRUCacheTest>.testAccessExpireN,
CppUnit::TestCaller<UniqueExpireLRUCacheTest>.testExpireN,
CppUnit::TestCaller<ExpireLRUCacheTest>.testAccessExpireN,
CppUnit::TestCaller<PollSetTest>.testPollClosedServer"
CppUnit::TestCaller<PollSetTest>.testPollClosedServer",
CppUnit::TestCaller<CryptoTest>.testEncryptDecryptGCM"
PWD=`pwd`
ctest --output-on-failure -E "(DataMySQL)|(DataODBC)|(PostgreSQL)|(MongoDB)|(Redis)"
Expand Down
10 changes: 7 additions & 3 deletions Crypto/testsuite/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ else
ifeq ($(findstring AIX, $(POCO_CONFIG)), AIX)
SYSLIBS += -lssl_a -lcrypto_a -lz -ldl
else
ifeq ($(POCO_CONFIG),Darwin)
SYSLIBS += -lssl -lcrypto -lz
else
SYSLIBS += -lssl -lcrypto -lz -ldl
endif
endif
endif
endif # Darwin
endif # AIX
endif # QNX
endif # FreeBSD

objects = CryptoTestSuite Driver \
CryptoTest DigestEngineTest ECTest \
Expand Down

0 comments on commit 6228ebe

Please sign in to comment.