re PR testsuite/72840 (PASS->NA: 20_util/ratio/cons/cons_overflow_neg.cc)
authorThomas Preud'homme <thomas.preudhomme@arm.com>
Mon, 15 Aug 2016 09:14:15 +0000 (09:14 +0000)
committerThomas Preud'homme <thopre01@gcc.gnu.org>
Mon, 15 Aug 2016 09:14:15 +0000 (09:14 +0000)
2016-08-15  Thomas Preud'homme  <thomas.preudhomme@arm.com>

    PR libstdc++/72840
    * testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Fix dg-error
    syntax.

From-SVN: r239463

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/20_util/ratio/cons/cons_overflow_neg.cc

index 446e8bac71b0712bb4d4e291b0d4962cce1f1823..2e4fa813dacd3363b644e21939bb1427564e074f 100644 (file)
@@ -1,3 +1,9 @@
+2016-08-15  Thomas Preud'homme  <thomas.preudhomme@arm.com>
+
+       PR libstdc++/72840
+       * testsuite/20_util/ratio/cons/cons_overflow_neg.cc: Fix dg-error
+       syntax.
+
 2016-08-11  Ville Voutilainen  <ville.voutilainen@gmail.com>
 
        Implement C++17 make_from_tuple.
index a101d2938a798324a56fb0ba4e503a9e66b30001..51a7926d35b4cdc0fe5e7bd23c805dfccfb77a44 100644 (file)
@@ -37,13 +37,13 @@ test02()
 void
 test03()
 {
-  std::ratio<1, INTMAX_MIN> r1 __attribute__((unused)); // { dg-error "required from here"
+  std::ratio<1, INTMAX_MIN> r1 __attribute__((unused)); // { dg-error "required from here" }
 }
 
 void
 test04()
 {
-  std::ratio<1,0> r1 __attribute__((unused)); // { dg-error "required from here"
+  std::ratio<1,0> r1 __attribute__((unused)); // { dg-error "required from here" }
 }
 
 // { dg-error "denominator cannot be zero" "" { target *-*-* } 265 }