1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:47:34 +00:00

AK: TestSuite's main should return 0

This commit is contained in:
Ben Wiederhake 2020-08-08 00:33:43 +02:00 committed by Andreas Kling
parent 9714e61d62
commit 54c6886108

View file

@ -272,6 +272,7 @@ using AK::TestSuite;
static_assert(compiletime_lenof(___str(SuiteName)) != 0, "Set SuiteName"); \
TestSuite::the().main(___str(SuiteName), argc, argv); \
TestSuite::release(); \
return 0; \
}
#define assertEqual(one, two) \