MCPcopy Create free account
hub / github.com/Kitware/CMake / testEncoding

Function testEncoding

Source/kwsys/testEncoding.cxx:269–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

267}
268
269int testEncoding(int, char*[])
270{
271 char const* loc = setlocale(LC_ALL, "");
272 if (loc) {
273 std::cout << "Locale: " << loc << std::endl;
274 } else {
275 std::cout << "Locale: None" << std::endl;
276 }
277
278 int ret = 0;
279
280 ret |= testHelloWorldEncoding();
281 ret |= testRobustEncoding();
282 ret |= testCommandLineArguments();
283 ret |= testWithNulls();
284 ret |= testToWindowsExtendedPath();
285
286 return ret;
287}

Callers

nothing calls this directly

Calls 5

testHelloWorldEncodingFunction · 0.85
testRobustEncodingFunction · 0.85
testWithNullsFunction · 0.85
testCommandLineArgumentsFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…