Index: scripts/create_testsuite_files =================================================================== --- scripts/create_testsuite_files (revision 206587) +++ scripts/create_testsuite_files (working copy) @@ -32,7 +32,7 @@ # This is the ugly version of "everything but the current directory". It's # what has to happen when find(1) doesn't support -mindepth, or -xtype. dlist=`echo [0-9][0-9]*` -dlist="$dlist abi backward ext performance tr1 tr2 decimal" +dlist="$dlist abi backward ext performance tr1 tr2 decimal experimental" find $dlist "(" -type f -o -type l ")" -name "*.cc" -print > $tmp.01 find $dlist "(" -type f -o -type l ")" -name "*.c" -print > $tmp.02 cat $tmp.01 $tmp.02 | sort > $tmp.1 Index: testsuite/experimental/string_view/element_access/char/2.cc =================================================================== --- testsuite/experimental/string_view/element_access/char/2.cc (revision 206587) +++ testsuite/experimental/string_view/element_access/char/2.cc (working copy) @@ -1,6 +1,5 @@ -// { dg-options "-std=gnu++1y" } // { dg-do run { xfail *-*-* } } -// { dg-options "-O0" } +// { dg-options "-std=gnu++1y -O0" } // { dg-require-debug-mode "" } // Copyright (C) 2013-2014 Free Software Foundation, Inc. @@ -26,6 +25,6 @@ main() { typedef std::experimental::string_view string_view_type; - experimental::string_view_type s; + string_view_type s; s[0]; // abort } Index: testsuite/experimental/string_view/element_access/wchar_t/2.cc =================================================================== --- testsuite/experimental/string_view/element_access/wchar_t/2.cc (revision 206587) +++ testsuite/experimental/string_view/element_access/wchar_t/2.cc (working copy) @@ -1,6 +1,5 @@ -// { dg-options "-std=gnu++1y" } // { dg-do run { xfail *-*-* } } -// { dg-options "-O0" } +// { dg-options "-std=gnu++1y -O0" } // { dg-require-debug-mode "" } // Copyright (C) 2013-2014 Free Software Foundation, Inc.