ladybird/Tests/LibCrypto/CMakeLists.txt
Tim Ledbetter d545fb2b60 LibCrypto: Parse negative input correctly in BigFraction::from_string()
Previously, when calling `BigFraction::from_string()`, the fractional
part of the number was always treated as positive. This led to an
incorrect result if the input string was negative.
2024-01-14 20:15:15 +01:00

21 lines
407 B
CMake

set(TEST_SOURCES
TestAES.cpp
TestASN1.cpp
TestBigFraction.cpp
TestBigInteger.cpp
TestChecksum.cpp
TestChaCha20.cpp
TestChacha20Poly1305.cpp
TestCurves.cpp
TestEd25519.cpp
TestHash.cpp
TestHMAC.cpp
TestPBKDF2.cpp
TestPoly1305.cpp
TestRSA.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibCrypto LIBS LibCrypto)
endforeach()