On 02/05/18 17:25 +0100, Jonathan Wakely wrote:
+int
+main()
+{
+  test01();
+  test02();
+  test03();
+  test04();
+  test05();
+  test05();

After committing this I noticed test05() is run twice. Fixed by this
patch.

commit 81d3cafc6bd00d44413adca3420f75c52870b1eb
Author: Jonathan Wakely <jwak...@redhat.com>
Date:   Wed May 2 17:26:19 2018 +0100

    Remove duplicate function call in test
    
            * testsuite/backward/strstream_move.cc: Remove duplicate function
            call.

diff --git a/libstdc++-v3/testsuite/backward/strstream_move.cc b/libstdc++-v3/testsuite/backward/strstream_move.cc
index 7dfbd337901..dbe789cbc6f 100644
--- a/libstdc++-v3/testsuite/backward/strstream_move.cc
+++ b/libstdc++-v3/testsuite/backward/strstream_move.cc
@@ -235,7 +235,6 @@ main()
   test03();
   test04();
   test05();
-  test05();
   test06();
   test07();
   test08();

Reply via email to