unit2600: avoid error: ‘TEST_CASES’ defined but not used

Follow-up to d55de24dce

Closes #10379
This commit is contained in:
Daniel Stenberg 2023-01-31 14:41:15 +01:00
parent f1f8acb3b9
commit b1e8cd52d9
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -352,7 +352,9 @@ UNITTEST_START
for(i = 0; i < sizeof(TEST_CASES)/sizeof(TEST_CASES[0]); ++i) {
test_connect(&TEST_CASES[i]);
}
#else
(void)TEST_CASES;
(void)test_connect;
#endif
UNITTEST_STOP