]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add missing dir to create_testsuite_files script
authorJonathan Wakely <jwakely@redhat.com>
Wed, 14 Nov 2018 14:25:00 +0000 (14:25 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 14 Nov 2018 14:25:00 +0000 (14:25 +0000)
* scripts/create_testsuite_files: Add special_functions to the list
of directories to search. Add comment referring to conformance.exp.
* testsuite/libstdc++-dg/conformance.exp: Add comment referring
to create_testsuite_files.

From-SVN: r266146

libstdc++-v3/ChangeLog
libstdc++-v3/scripts/create_testsuite_files
libstdc++-v3/testsuite/libstdc++-dg/conformance.exp

index 4ea9dbfc18afe9fc79f47601e935b6dbed2fd946..9b4bdc694d8463e1c10549f9378a41202799ba1b 100644 (file)
@@ -1,3 +1,10 @@
+2018-11-14  Jonathan Wakely  <jwakely@redhat.com>
+
+       * scripts/create_testsuite_files: Add special_functions to the list
+       of directories to search. Add comment referring to conformance.exp.
+       * testsuite/libstdc++-dg/conformance.exp: Add comment referring
+       to create_testsuite_files.
+
 2018-11-13  Jonathan Wakely  <jwakely@redhat.com>
 
        * src/c++17/memory_resource.cc (select_num_pools): Fix off-by-one
index 156304c2ad27365f8ee5f76b5c7802d56dfc8d20..40e81cea8a9b5400579e41499e75d6bc185f5a40 100755 (executable)
@@ -31,8 +31,10 @@ tests_file_perf="$outdir/testsuite_files_performance"
 cd $srcdir
 # 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.
+# The directories here should be consistent with libstdc++-dg/conformance.exp
 dlist=`echo [0-9][0-9]*`
 dlist="$dlist abi backward ext performance tr1 tr2 decimal experimental"
+dlist="$dlist special_functions"
 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 49ac6fb1649b4eb8f529146fe49d35f0344419de..f372d670f6bbcd568433bb44421e2608152dc170 100644 (file)
@@ -52,6 +52,7 @@ if {[info exists tests_file] && [file exists $tests_file]} {
     close $f
 } else {
     # Find directories that might have tests.
+    # This list should be consistent with scripts/create_testsuite_files
     set subdirs [glob "$srcdir/\[0-9\]\[0-9\]*"]
     lappend subdirs "$srcdir/abi"
     lappend subdirs "$srcdir/backward"