libstdc++: Fix spelling of __MINGW32__ macros
authorJonathan Wakely <jwakely@redhat.com>
Wed, 10 Feb 2021 16:37:39 +0000 (16:37 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Wed, 10 Feb 2021 16:40:29 +0000 (16:40 +0000)
libstdc++-v3/ChangeLog:

* testsuite/27_io/filesystem/operations/proximate.cc: Fix typo
in __MINGW32__ macro name.
* testsuite/27_io/filesystem/path/compare/lwg2936.cc: Likewise.
* testsuite/27_io/filesystem/path/generation/proximate.cc:
Likewise.
* testsuite/27_io/filesystem/path/generation/relative.cc:
Likewise.
* testsuite/util/testsuite_fs.h: Likewise.

libstdc++-v3/testsuite/27_io/filesystem/operations/proximate.cc
libstdc++-v3/testsuite/27_io/filesystem/path/compare/lwg2936.cc
libstdc++-v3/testsuite/27_io/filesystem/path/generation/proximate.cc
libstdc++-v3/testsuite/27_io/filesystem/path/generation/relative.cc
libstdc++-v3/testsuite/util/testsuite_fs.h

index 1ab2aa6603f1ae5a3487c7a60ef88645bdd04288..dc5b926b858933e4b5477b1d27b49845b10d9805 100644 (file)
@@ -30,7 +30,7 @@ using __gnu_test::compare_paths;
 std::string operator""_norm(const char* s, std::size_t n)
 {
   std::string str(s, n);
-#if defined(__MING32__) || defined(__MINGW64__)
+#if defined(__MINGW32__) || defined(__MINGW64__)
   for (auto& c : str)
     if (c == '/')
       c = '\\';
index 892b82ae6217f4470a97298f7e71a3b9c53ee586..998be2aad6db49a108b344cb7353df4f1dd91f48 100644 (file)
@@ -59,7 +59,7 @@ test01()
   check("c:", "d:", -1);
   check("c:", "c:/", -1);
   check("d:", "c:/", +1);
-#if defined(__MING32__) || defined(__MINGW64__)
+#if defined(__MINGW32__) || defined(__MINGW64__)
   check("c:/a/b", "c:a/b", +1);
 #else
   check("c:/a/b", "c:a/b", -1);
index 1851e5de790215623c432fcf5f6a9684b91f8982..6b463c3886ac82185e782a6e7d5bf3fdf90fdb53 100644 (file)
@@ -29,7 +29,7 @@ using __gnu_test::compare_paths;
 std::string operator""_norm(const char* s, std::size_t n)
 {
   std::string str(s, n);
-#if defined(__MING32__) || defined(__MINGW64__)
+#if defined(__MINGW32__) || defined(__MINGW64__)
   for (auto& c : str)
     if (c == '/')
       c = '\\';
index 388c415fbafafb90e6a6d7c1b22ce6d010f7fd20..f56cf6ed4521bbb43ebbd62af2e670277400618a 100644 (file)
@@ -29,7 +29,7 @@ using __gnu_test::compare_paths;
 std::string operator""_norm(const char* s, std::size_t n)
 {
   std::string str(s, n);
-#if defined(__MING32__) || defined(__MINGW64__)
+#if defined(__MINGW32__) || defined(__MINGW64__)
   for (auto& c : str)
     if (c == '/')
       c = '\\';
@@ -80,7 +80,7 @@ test03()
 void
 test04()
 {
-#if defined(__MING32__) || defined(__MINGW64__)
+#if defined(__MINGW32__) || defined(__MINGW64__)
   // DR 3070
   compare_paths(path("c:/f:o/bar").lexically_relative("c:/f:o/bar"), ".");
   compare_paths(path("c:/foo/bar").lexically_relative("c:/foo/b:r"), "..\\bar");
index 80774b69e9902a393c2f6d8946de6ec5d817a24d..4cda0eefeaf5d7b12548081ddeccb668cbb7c21c 100644 (file)
@@ -82,7 +82,7 @@ namespace __gnu_test
   test_fs::path
   root_path()
   {
-#if defined(__MING32__) || defined(__MINGW64__)
+#if defined(__MINGW32__) || defined(__MINGW64__)
     return L"c:/";
 #else
     return "/";