mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 12:56:23 +03:00
d545fb2b60
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.
21 lines
407 B
CMake
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()
|