summaryrefslogtreecommitdiffstats
path: root/Source/ctest.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-02-06 18:09:37 (GMT)
committerBrad King <brad.king@kitware.com>2015-02-06 18:32:26 (GMT)
commit87be2e1427ba2b1b7697c9332487862917897dca (patch)
tree4880d84b5d265e45033a23258e2645bbfef0f795 /Source/ctest.cxx
parent44100adc6c7f7db7bfd4ccf0d8bd18de8ab195c0 (diff)
downloadCMake-87be2e1427ba2b1b7697c9332487862917897dca.zip
CMake-87be2e1427ba2b1b7697c9332487862917897dca.tar.gz
CMake-87be2e1427ba2b1b7697c9332487862917897dca.tar.bz2
Do not call setlocale() globally in CMake applications (#15377)
Revert the changes made by commit v3.1.0-rc1~406^2~1 (Encoding: Add setlocale() to applications, 2014-05-30) and commit v3.1.0-rc1~406^2 (Encoding: Change to only set LC_CTYPE, 2014-06-11), and other setlocale calls added later in their spirit. CMake has not been taught how to deal with non-C locales everywhere. We do not define any functionality for character conversions for non-ASCII strings. Another solution will be needed to address the original problem motivating addition of setlocale() calls.
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r--Source/ctest.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index fb97af6..3fe31ca 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -19,7 +19,6 @@
#include "CTest/cmCTestScriptHandler.h"
#include "CTest/cmCTestLaunch.h"
#include "cmsys/Encoding.hxx"
-#include <locale.h>
//----------------------------------------------------------------------------
static const char * cmDocumentationName[][2] =
@@ -117,8 +116,6 @@ static const char * cmDocumentationOptions[][2] =
// this is a test driver program for cmCTest.
int main (int argc, char const* const* argv)
{
- setlocale(LC_CTYPE, "");
-
cmsys::Encoding::CommandLineArguments encoding_args =
cmsys::Encoding::CommandLineArguments::Main(argc, argv);
argc = encoding_args.argc();