[libcxx-commits] [libcxx] 82b6dec - [libc++] Remove c++98 from the possible Standards of the test suite
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Jul 29 11:18:51 PDT 2020
Author: Louis Dionne
Date: 2020-07-29T14:18:37-04:00
New Revision: 82b6dec0ed1dd5a4fa5484009c42fa25e603a875
URL: https://github.com/llvm/llvm-project/commit/82b6dec0ed1dd5a4fa5484009c42fa25e603a875
DIFF: https://github.com/llvm/llvm-project/commit/82b6dec0ed1dd5a4fa5484009c42fa25e603a875.diff
LOG: [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.
Added:
Modified:
libcxx/utils/libcxx/test/params.py
Removed:
################################################################################
diff --git a/libcxx/utils/libcxx/test/params.py b/libcxx/utils/libcxx/test/params.py
index a9431ec073f8..773890b01509 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
More information about the libcxx-commits
mailing list