commit | 9711fc0285ffb218d649f61e882dec901547e462 | [log] [tgz] |
---|---|---|
author | Louis Dionne <ldionne@apple.com> | Wed Nov 21 00:03:17 2018 +0000 |
committer | Louis Dionne <ldionne@apple.com> | Wed Nov 21 00:03:17 2018 +0000 |
tree | 4eac264b3ba36070cb95bbbd941b055e329344b0 | |
parent | a0078f4f93f1458e242297f12865b091ea01e409 [diff] |
[NFC] Rename lit feature to '-fsized-deallocation' for consistency The '-faligned-allocation' flag uses a feature with the same name (with a leading dash). llvm-svn: 347367 Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project Cr-Mirrored-Commit: 52118fcb46d83812591f38bbdba280f23b58d3fc
diff --git a/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp b/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp index f71cf19..e02c594 100644 --- a/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp +++ b/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp
@@ -21,7 +21,7 @@ // NOTE: Only clang-3.7 and GCC 5.1 and greater support -fsized-deallocation. -// REQUIRES: fsized-deallocation +// REQUIRES: -fsized-deallocation // RUN: %build -fsized-deallocation // RUN: %run
diff --git a/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp b/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp index d5b610f..21ae889 100644 --- a/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp +++ b/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp
@@ -20,7 +20,7 @@ // XFAIL: availability_markup=macosx10.7 // NOTE: Only clang-3.7 and GCC 5.1 and greater support -fsized-deallocation. -// REQUIRES: fsized-deallocation +// REQUIRES: -fsized-deallocation // RUN: %build -fsized-deallocation -O3 // RUN: %run
diff --git a/utils/libcxx/test/config.py b/utils/libcxx/test/config.py index 62a1393..7467511 100644 --- a/utils/libcxx/test/config.py +++ b/utils/libcxx/test/config.py
@@ -446,7 +446,7 @@ # Run a compile test for the -fsized-deallocation flag. This is needed # in test/std/language.support/support.dynamic/new.delete if self.cxx.hasCompileFlag('-fsized-deallocation'): - self.config.available_features.add('fsized-deallocation') + self.config.available_features.add('-fsized-deallocation') if self.cxx.hasCompileFlag('-faligned-allocation'): self.config.available_features.add('-faligned-allocation')