diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-11-07 20:20:58 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-11-07 20:20:58 +0000 |
commit | 515e9dbfef2ba810328a3b3556840b9df80db2c6 (patch) | |
tree | c9b28194b72462ed0aa049c325a1227cec83a513 /libcxx/docs | |
parent | c58fbe22eaf50330be4dc8aa984ebdb74f2acdca (diff) | |
download | bcm5719-llvm-515e9dbfef2ba810328a3b3556840b9df80db2c6.tar.gz bcm5719-llvm-515e9dbfef2ba810328a3b3556840b9df80db2c6.zip |
Change test suite to support c++17 dialect flag instead of c++1z.
This patch changes the test suite to attempt and prefer -std=c++17 over
-std=c++1z. It also fixes the REQUIRES and UNSUPPORTED lit markers
to refer to c++17 over c++1z.
llvm-svn: 317610
Diffstat (limited to 'libcxx/docs')
-rw-r--r-- | libcxx/docs/TestingLibcxx.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/docs/TestingLibcxx.rst b/libcxx/docs/TestingLibcxx.rst index 5c48ebe61dd..8f0d98510d1 100644 --- a/libcxx/docs/TestingLibcxx.rst +++ b/libcxx/docs/TestingLibcxx.rst @@ -112,7 +112,7 @@ configuration. Passing the option on the command line will override the default. .. option:: std=<standard version> - **Values**: c++98, c++03, c++11, c++14, c++1z + **Values**: c++98, c++03, c++11, c++14, c++17 Change the standard version used when building the tests. |