Commit 007d260
committed
Fixed handling of disabled-tests options
* tests to be disabled are listed by name in an external file, one per line.
these are read from disk line-by-line into an array, and later put back together into
a single string with a newline ("\n") separator, presumably for marshalling over IPC.
before this fix, there was an attempt to split these out again using an overload of
`StringArray::fromTokens` which uses whitespace delimiters, ultimately causing test cases
with spaces in to not be disabled (e.g. "Automatable Parameters" end up in the options
array as two entries, so the test case isn't picked up as a match).
using `StringArray::fromLines` fixes the issue1 parent 3362803 commit 007d260
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
474 | 474 | | |
475 | 475 | | |
476 | 476 | | |
477 | | - | |
| 477 | + | |
478 | 478 | | |
479 | 479 | | |
480 | 480 | | |
| |||
0 commit comments