diff options
author | Brad King <brad.king@kitware.com> | 2021-04-19 13:46:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-04-19 13:46:56 (GMT) |
commit | b5cb26e287645d5a54459347635dbf7517b6552a (patch) | |
tree | eba8775e78a33d6ca754340108000ad35bdce8d0 /Source/kwsys | |
parent | 995be1097c35fd3187d147494156bbfb9da7037f (diff) | |
parent | d98342d868a51f2c777f0424d2ea04f2fb1fd3ca (diff) | |
download | CMake-b5cb26e287645d5a54459347635dbf7517b6552a.zip CMake-b5cb26e287645d5a54459347635dbf7517b6552a.tar.gz CMake-b5cb26e287645d5a54459347635dbf7517b6552a.tar.bz2 |
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream
* upstream-KWSys:
KWSys 2021-04-19 (d6139c66)
Diffstat (limited to 'Source/kwsys')
-rw-r--r-- | Source/kwsys/testSystemTools.cxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/kwsys/testSystemTools.cxx b/Source/kwsys/testSystemTools.cxx index cfa420d..04f66ff 100644 --- a/Source/kwsys/testSystemTools.cxx +++ b/Source/kwsys/testSystemTools.cxx @@ -290,15 +290,17 @@ static bool CheckFileOperations() res = false; } + std::cerr << std::oct; // Reset umask -#if defined(_WIN32) && !defined(__CYGWIN__) +#ifdef __MSYS__ + mode_t fullMask = S_IWRITE; +#elif defined(_WIN32) && !defined(__CYGWIN__) // NOTE: Windows doesn't support toggling _S_IREAD. mode_t fullMask = _S_IWRITE; #else // On a normal POSIX platform, we can toggle all permissions. mode_t fullMask = S_IRWXU | S_IRWXG | S_IRWXO; #endif - mode_t orig_umask = umask(fullMask); // Test file permissions without umask mode_t origPerm, thisPerm; @@ -370,6 +372,7 @@ static bool CheckFileOperations() res = false; } + mode_t orig_umask = umask(fullMask); // Test setting file permissions while honoring umask if (!kwsys::SystemTools::SetPermissions(testNewFile, fullMask, true)) { std::cerr << "Problem with SetPermissions (3) for: " << testNewFile @@ -496,6 +499,7 @@ static bool CheckFileOperations() } #endif + std::cerr << std::dec; return res; } @@ -1093,7 +1097,7 @@ static bool CheckCopyFileIfDifferent() ret = false; continue; } - std::string bdata = readFile("file_b"); + std::string bdata = readFile(cptarget); if (diff_test_cases[i].a != bdata) { std::cerr << "Incorrect CopyFileIfDifferent file contents in test case " << i + 1 << "." << std::endl; |