[libcxx] r237740 - Address @danalberts comments on r237700

Eric Fiselier eric at efcs.ca
Tue May 19 16:10:32 PDT 2015


Author: ericwf
Date: Tue May 19 18:10:32 2015
New Revision: 237740

URL: http://llvm.org/viewvc/llvm-project?rev=237740&view=rev
Log:
Address @danalberts comments on r237700

Modified:
    libcxx/trunk/test/libcxx/test/config.py
    libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp
    libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp

Modified: libcxx/trunk/test/libcxx/test/config.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/test/config.py?rev=237740&r1=237739&r2=237740&view=diff
==============================================================================
--- libcxx/trunk/test/libcxx/test/config.py (original)
+++ libcxx/trunk/test/libcxx/test/config.py Tue May 19 18:10:32 2015
@@ -536,7 +536,7 @@ class Configuration(object):
             self.lit_config.fatal('Invalid value for color_diagnostics "%s".'
                                   % use_color)
         color_flag = '-fdiagnostics-color=always'
-        # Check if the compiler support the color diagnostics flag. Issue a
+        # Check if the compiler supports the color diagnostics flag. Issue a
         # warning if it does not since color diagnostics have been requested.
         if not self.cxx.hasCompileFlag(color_flag):
             self.lit_config.warning(

Modified: libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp?rev=237740&r1=237739&r2=237740&view=diff
==============================================================================
--- libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.array/sized_delete_array_fsizeddeallocation.sh.cpp Tue May 19 18:10:32 2015
@@ -14,7 +14,7 @@
 
 // UNSUPPORTED: sanitizer-new-delete
 
-// NOTE: Require that the compiler supports the -fsized-deallocation flag.
+// NOTE: Only clang-3.7 and GCC 5.1 and greater support -fsized-deallocation.
 // REQUIRES: fsized-deallocation
 
 // RUN: %build -fsized-deallocation

Modified: libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp?rev=237740&r1=237739&r2=237740&view=diff
==============================================================================
--- libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp (original)
+++ libcxx/trunk/test/std/language.support/support.dynamic/new.delete/new.delete.single/sized_delete_fsizeddeallocation.sh.cpp Tue May 19 18:10:32 2015
@@ -14,7 +14,7 @@
 
 // UNSUPPORTED: sanitizer-new-delete
 
-// NOTE: Require that the compiler supports the -fsized-deallocation flag.
+// NOTE: Only clang-3.7 and GCC 5.1 and greater support -fsized-deallocation.
 // REQUIRES: fsized-deallocation
 
 // RUN: %build -fsized-deallocation





More information about the cfe-commits mailing list