From 82b6dec0ed1dd5a4fa5484009c42fa25e603a875 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Wed, 29 Jul 2020 14:17:57 -0400 Subject: [PATCH] [libc++] Remove c++98 from the possible Standards of the test suite Clang treats C++98 and C++03 as the same anyway, so it's no use having two different settings for the same standard. --- libcxx/utils/libcxx/test/params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/utils/libcxx/test/params.py b/libcxx/utils/libcxx/test/params.py index a9431ec..773890b 100644 --- a/libcxx/utils/libcxx/test/params.py +++ b/libcxx/utils/libcxx/test/params.py @@ -8,7 +8,7 @@ from libcxx.test.dsl import * -_allStandards = ['c++98', 'c++03', 'c++11', 'c++14', 'c++17', 'c++2a'] +_allStandards = ['c++03', 'c++11', 'c++14', 'c++17', 'c++2a'] DEFAULT_PARAMETERS = [ # Core parameters of the test suite -- 2.7.4