r201483 - check-clang: Introduce the feature "dw2" to suppress CodeGenCXX/debug-info-namespace.cpp with *-win32.
NAKAMURA Takumi
geek4civic at gmail.com
Sun Feb 16 02:15:47 PST 2014
Author: chapuni
Date: Sun Feb 16 04:15:46 2014
New Revision: 201483
URL: http://llvm.org/viewvc/llvm-project?rev=201483&view=rev
Log:
check-clang: Introduce the feature "dw2" to suppress CodeGenCXX/debug-info-namespace.cpp with *-win32.
FIXME: Could we add itanium triple here?
Modified:
cfe/trunk/test/CodeGenCXX/debug-info-namespace.cpp
cfe/trunk/test/lit.cfg
Modified: cfe/trunk/test/CodeGenCXX/debug-info-namespace.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-namespace.cpp?rev=201483&r1=201482&r2=201483&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-namespace.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-namespace.cpp Sun Feb 16 04:15:46 2014
@@ -80,3 +80,4 @@ using B::i;
// FIXME: It is confused on win32 to generate file entry when dosish filename is given.
// REQUIRES: shell
// REQUIRES: shell-preserves-root
+// REQUIRES: dw2
Modified: cfe/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=201483&r1=201482&r2=201483&view=diff
==============================================================================
--- cfe/trunk/test/lit.cfg (original)
+++ cfe/trunk/test/lit.cfg Sun Feb 16 04:15:46 2014
@@ -336,6 +336,10 @@ if is_filesystem_case_insensitive():
if os.path.exists("/dev/fd/0") and sys.platform not in ['cygwin']:
config.available_features.add('dev-fd-fs')
+# DW2 Target
+if not re.match(r'.*-win32$', config.target_triple):
+ config.available_features.add('dw2')
+
# [PR8833] LLP64-incompatible tests
if not re.match(r'^x86_64.*-(win32|mingw32)$', config.target_triple):
config.available_features.add('LP64')
More information about the cfe-commits
mailing list