diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testrunner/main.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/testrunner/main.cpp b/tools/testrunner/main.cpp index 1bdec235..11c0c248 100644 --- a/tools/testrunner/main.cpp +++ b/tools/testrunner/main.cpp @@ -226,8 +226,11 @@ int main(int argc, const char* argv[]) if( start != end ) { auto a = line.substr(start, end-start); - DEBUG("+" << a); - td.m_extra_flags.push_back(::std::move(a)); + if( a != "" ) + { + DEBUG("+" << a); + td.m_extra_flags.push_back(::std::move(a)); + } } if( end == ::std::string::npos ) break; |