22131.cc: Make test less istreambuf_iterator implementation dependent.
authorFrançois Dumont <fdumont@gcc.gnu.org>
Wed, 27 Sep 2017 20:16:43 +0000 (20:16 +0000)
committerFrançois Dumont <fdumont@gcc.gnu.org>
Wed, 27 Sep 2017 20:16:43 +0000 (20:16 +0000)
2017-09-27  François Dumont  <fdumont@gcc.gnu.org>

* testsuite/22_locale/money_get/get/char/22131.cc: Make test less
istreambuf_iterator implementation dependent.
* testsuite/22_locale/money_get/get/wchar_t/22131.cc: Likewise.

From-SVN: r253237

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/22_locale/money_get/get/char/22131.cc
libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/22131.cc

index c04155f..fde6ec9 100644 (file)
@@ -1,3 +1,9 @@
+2017-09-27  François Dumont  <fdumont@gcc.gnu.org>
+
+       * testsuite/22_locale/money_get/get/char/22131.cc: Make test less
+       istreambuf_iterator implementation dependent.
+       * testsuite/22_locale/money_get/get/wchar_t/22131.cc: Likewise.
+
 2017-09-25  Uros Bizjak  <ubizjak@gmail.com>
 
        PR c/81854
index 6f363ef..5a05817 100644 (file)
@@ -67,7 +67,7 @@ void test01()
   fmt2.imbue(loc);
   InIt ibeg2(fmt2);
   err2 = ios_base::goodbit;
-  mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
+  ibeg2 = mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
   VERIFY( err2 == ios_base::failbit );
   VERIFY( *ibeg2 == '#' );
   VERIFY( val2 == "" );
index 3830cc3..0626e3c 100644 (file)
@@ -67,7 +67,7 @@ void test01()
   fmt2.imbue(loc);
   InIt ibeg2(fmt2);
   err2 = ios_base::goodbit;
-  mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
+  ibeg2 = mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
   VERIFY( err2 == ios_base::failbit );
   VERIFY( *ibeg2 == L'#' );
   VERIFY( val2 == L"" );