diff options
author | Brad King <brad.king@kitware.com> | 2011-05-19 12:11:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-05-19 11:38:06 (GMT) |
commit | 7039d1fd9b817a3ab6c81b4ef313a0bd6e19778d (patch) | |
tree | 99fd1835f9717980e5a4953ea0c9a52160e52e65 /Tests/CompileCommandOutput/compile_command_output.cxx | |
parent | 4268e3d7e92eee0871dac1b92f64e18c374c7b43 (diff) | |
download | CMake-7039d1fd9b817a3ab6c81b4ef313a0bd6e19778d.zip CMake-7039d1fd9b817a3ab6c81b4ef313a0bd6e19778d.tar.gz CMake-7039d1fd9b817a3ab6c81b4ef313a0bd6e19778d.tar.bz2 |
Fix CompileCommandOutput test for Make tools not supporting spaces
Use underscores instead of spaces for such Make tools.
Diffstat (limited to 'Tests/CompileCommandOutput/compile_command_output.cxx')
-rw-r--r-- | Tests/CompileCommandOutput/compile_command_output.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CompileCommandOutput/compile_command_output.cxx b/Tests/CompileCommandOutput/compile_command_output.cxx index 9487c89..145a064 100644 --- a/Tests/CompileCommandOutput/compile_command_output.cxx +++ b/Tests/CompileCommandOutput/compile_command_output.cxx @@ -1,9 +1,9 @@ -#include "file with spaces.h" +#include "file_with_underscores.h" #include "relative.h" int main (int argc, char** argv) { - file_with_spaces(); + file_with_underscores(); relative(); return 0; } |