mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	Fixed issue with reading test names from file
This commit is contained in:
		| @@ -49,7 +49,7 @@ namespace Catch { | ||||
|         while( std::getline( f, line ) ) { | ||||
|             line = trim(line); | ||||
|             if( !line.empty() && !startsWith( line, "#" ) ) | ||||
|                 addTestOrTags( config, line ); | ||||
|                 addTestOrTags( config, "\"" + line + "\"" ); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|   | ||||
| @@ -36,10 +36,10 @@ namespace Catch { | ||||
|                 visitChar( m_arg[m_pos] ); | ||||
|             if( m_mode == Name ) | ||||
|                 addPattern<TestSpec::NamePattern>(); | ||||
|             addFilter(); | ||||
|             return *this; | ||||
|         } | ||||
|         TestSpec testSpec() { | ||||
|             addFilter(); | ||||
|             return m_testSpec; | ||||
|         } | ||||
|     private: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Phil Nash
					Phil Nash