summaryrefslogtreecommitdiffstats
path: root/Source/cmAddTestCommand.cxx
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2021-08-16 14:46:53 (GMT)
committerMarc Chevrier <marc.chevrier@gmail.com>2021-08-25 08:09:10 (GMT)
commitdc3aa4024eba3067d2cc81087aeccd4b31cf23f0 (patch)
tree3aae2a42df1146f5ab27ffadc25c8ab8f542ee0d /Source/cmAddTestCommand.cxx
parent6dfa581babfb051461341ca92e0463481799361f (diff)
downloadCMake-dc3aa4024eba3067d2cc81087aeccd4b31cf23f0.zip
CMake-dc3aa4024eba3067d2cc81087aeccd4b31cf23f0.tar.gz
CMake-dc3aa4024eba3067d2cc81087aeccd4b31cf23f0.tar.bz2
Refactor: Use new SetProperty signatures
Diffstat (limited to 'Source/cmAddTestCommand.cxx')
-rw-r--r--Source/cmAddTestCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddTestCommand.cxx b/Source/cmAddTestCommand.cxx
index 205c1c7..a0d5732 100644
--- a/Source/cmAddTestCommand.cxx
+++ b/Source/cmAddTestCommand.cxx
@@ -140,7 +140,7 @@ bool cmAddTestCommandHandleNameMode(std::vector<std::string> const& args,
test->SetOldStyle(false);
test->SetCommand(command);
if (!working_directory.empty()) {
- test->SetProperty("WORKING_DIRECTORY", working_directory.c_str());
+ test->SetProperty("WORKING_DIRECTORY", working_directory);
}
test->SetCommandExpandLists(command_expand_lists);
mf.AddTestGenerator(cm::make_unique<cmTestGenerator>(test, configurations));