gcc/testsuite/
* lib/g++.exp: Also find -std list in GXX_TESTSUITE_STDS
environment variable.
gcc/cp/
* Make-lang.in (check-c++1z, check-c++-all): Use GXX_TESTSUITE_STDS.
From-SVN: r231379
+2015-12-07 Jason Merrill <jason@redhat.com>
+
+ * Make-lang.in (check-c++1z, check-c++-all): Use GXX_TESTSUITE_STDS.
+
2015-12-06 Jason Merrill <jason@redhat.com>
* parser.c (struct tentative_firewall): New.
# Run the testsuite in C++1z mode.
check-c++1z:
- $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) --stds=1z" check-g++
+ $(MAKE) GXX_TESTSUITE_STDS=1z check-g++
# Run the testsuite in all standard conformance levels.
check-c++-all:
+2015-12-07 Jason Merrill <jason@redhat.com>
+
+ * lib/g++.exp: Also find -std list in GXX_TESTSUITE_STDS
+ environment variable.
+
2015-12-07 Marek Polacek <polacek@redhat.com>
PR c/68668
set gpp_compile_options ""
set gpp_std_list { }
+if [info exists env(GXX_TESTSUITE_STDS)] {
+ set gpp_std_list [split $env(GXX_TESTSUITE_STDS) ","]
+}
#
# g++_version -- extract and print the version number of the compiler