We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a9b676 commit 5b9f9dcCopy full SHA for 5b9f9dc
src/lib/support/UnitTestRegistration.cpp
@@ -18,10 +18,11 @@
18
#include <stdlib.h>
19
#include <string.h>
20
#include <support/UnitTestRegistration.h>
21
+#include <support/logging/CHIPLogging.h>
22
23
namespace chip {
24
-const size_t kTestSuitesMax = 64;
25
+const size_t kTestSuitesMax = 128;
26
27
typedef struct
28
{
@@ -45,6 +46,7 @@ CHIP_ERROR RegisterUnitTests(UnitTestTriggerFunction tests)
45
46
47
if (gs_test_suites.num_test_suites >= kTestSuitesMax)
48
49
+ ChipLogError(Support, "Test suits limit reached");
50
return CHIP_ERROR_NO_MEMORY;
51
}
52
0 commit comments