Skip to content

Commit 13dabcc

Browse files
authored
Merge pull request #37 from LucasThompson/bugfix/disabled-tests-tokenisation
Fix handling of `--disabled-tests` options
2 parents 3362803 + 007d260 commit 13dabcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Validator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ class ValidatorSlaveProcess : public ChildProcessSlave,
474474
options.dataFile = File (v[IDs::dataFile].toString());
475475
options.outputDir = File (v[IDs::outputDir].toString());
476476
options.withGUI = v.getProperty (IDs::withGUI, true);
477-
options.disabledTests = StringArray::fromTokens (v.getProperty (IDs::disabledTests).toString(), false);
477+
options.disabledTests = StringArray::fromLines (v.getProperty (IDs::disabledTests).toString());
478478

479479
for (auto c : v)
480480
{

0 commit comments

Comments
 (0)