diff options
author | Brad King <brad.king@kitware.com> | 2017-12-06 16:45:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-12-06 16:45:51 (GMT) |
commit | 976370d134a2d7b22b6f43f6031b0ee850a01d9d (patch) | |
tree | f7063e190e554300ded5f6faf7eccd3a684d6e66 /Source/cmServerProtocol.cxx | |
parent | 92910e282adedff8c2dba488db84fb917318bb5b (diff) | |
download | CMake-976370d134a2d7b22b6f43f6031b0ee850a01d9d.zip CMake-976370d134a2d7b22b6f43f6031b0ee850a01d9d.tar.gz CMake-976370d134a2d7b22b6f43f6031b0ee850a01d9d.tar.bz2 |
server: drop "ctestInfo" backtrace information
Backtrace information was included by commit 35a52bd1b4 (server: add
"ctestInfo" request to get test info, 2017-10-25) to match that already
provided for targets. However, the backtrace representation uses too
much memory and needs to be dropped. Remove it from test information.
Issue: #17502
Diffstat (limited to 'Source/cmServerProtocol.cxx')
-rw-r--r-- | Source/cmServerProtocol.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmServerProtocol.cxx b/Source/cmServerProtocol.cxx index da354bd..b9b06db 100644 --- a/Source/cmServerProtocol.cxx +++ b/Source/cmServerProtocol.cxx @@ -799,9 +799,6 @@ static Json::Value DumpCTestInfo(cmTest* testInfo) } result[kPROPERTIES_KEY] = properties; - // Need backtrace to figure out where this test was originally added - result[kBACKTRACE_KEY] = DumpBacktrace(testInfo->GetBacktrace()); - return result; } |