We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cba60b9 + f2cab0a commit c550c92Copy full SHA for c550c92
tests/clar.c
@@ -340,6 +340,12 @@ clar_parse_args(int argc, char **argv)
340
if (strncmp(argument, _clar_suites[j].name, cmplen) == 0) {
341
int exact = (arglen >= suitelen);
342
343
+ /* Do we have a real suite prefix separated by a
344
+ * trailing '::' or just a matching substring? */
345
+ if (arglen > suitelen && (argument[suitelen] != ':'
346
+ || argument[suitelen + 1] != ':'))
347
+ continue;
348
+
349
++found;
350
351
if (!exact)
0 commit comments