We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af8a770 commit 6815b87Copy full SHA for 6815b87
tools/bin/mbedtls-run-tests
@@ -2,7 +2,7 @@
2
3
"""Run Mbed TLS unit tests.
4
5
-By default, run all test casess. If at least one of --prefix, --regex or
+By default, run all test cases. If at least one of --prefix, --regex or
6
--substring is specified, only run the test cases that match any of these
7
options.
8
"""
@@ -29,7 +29,7 @@ class TestCaseFilter:
29
include += '|' + re.escape(string)
30
for regex in options.regex:
31
include += '|.*' + regex
32
- if include: # no filter specified
+ if include:
33
include = include[1:] # remove the leading '|'
34
self.include = re.compile(include.encode())
35
if options.exclude:
0 commit comments