ENH: Some systems do not handle spaces in the path
This commit is contained in:
parent
4dd97ff97f
commit
1061101745
|
@ -239,7 +239,7 @@ IF(BUILD_TESTING)
|
||||||
--test-command conly)
|
--test-command conly)
|
||||||
|
|
||||||
SET(SimpleInstallInstallDir
|
SET(SimpleInstallInstallDir
|
||||||
"${CMake_BINARY_DIR}/Tests/SimpleInstall/Install Directory")
|
"${CMake_BINARY_DIR}/Tests/SimpleInstall/InstallDirectory")
|
||||||
ADD_TEST(SimpleInstall ${CMAKE_CTEST_COMMAND}
|
ADD_TEST(SimpleInstall ${CMAKE_CTEST_COMMAND}
|
||||||
--build-and-test
|
--build-and-test
|
||||||
"${CMake_SOURCE_DIR}/Tests/SimpleInstall"
|
"${CMake_SOURCE_DIR}/Tests/SimpleInstall"
|
||||||
|
|
|
@ -17,6 +17,6 @@ int main ()
|
||||||
printf("Problem with lib2\n");
|
printf("Problem with lib2\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
printf("Foo: %s\n", foo);
|
printf("The value of Foo: %s\n", foo);
|
||||||
return SomeFunctionInFoo()-5;
|
return SomeFunctionInFoo()-5;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,6 +17,6 @@ int main ()
|
||||||
printf("Problem with lib2\n");
|
printf("Problem with lib2\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
printf("Foo: %s\n", foo);
|
printf("The value of Foo: %s\n", foo);
|
||||||
return SomeFunctionInFoo()-5;
|
return SomeFunctionInFoo()-5;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue