[cfe-commits] r132491 - in /cfe/trunk/test: CodeGen/2009-10-20-GlobalDebug.c CodeGen/X86/ Makefile Unit/lit.site.cfg.in lit.site.cfg.in
Galina Kistanova
gkistanova at gmail.com
Thu Jun 2 14:55:39 PDT 2011
Author: gkistanova
Date: Thu Jun 2 16:55:39 2011
New Revision: 132491
URL: http://llvm.org/viewvc/llvm-project?rev=132491&view=rev
Log:
Reverted r132330, r132321, r132320, r132319 as per discussion. Will try in-test requirement declarations instead.
Added:
cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c
- copied unchanged from r132320, cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c
Removed:
cfe/trunk/test/CodeGen/X86/
Modified:
cfe/trunk/test/Makefile
cfe/trunk/test/Unit/lit.site.cfg.in
cfe/trunk/test/lit.site.cfg.in
Modified: cfe/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile?rev=132491&r1=132490&r2=132491&view=diff
==============================================================================
--- cfe/trunk/test/Makefile (original)
+++ cfe/trunk/test/Makefile Thu Jun 2 16:55:39 2011
@@ -45,7 +45,6 @@
@$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> lit.tmp
@$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> lit.tmp
@$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> lit.tmp
- @$(ECHOPATH) s=@TARGETS_TO_BUILD@=$(TARGETS_TO_BUILD)=g >> lit.tmp
@sed -f lit.tmp $(PROJ_SRC_DIR)/lit.site.cfg.in > $@
@-rm -f lit.tmp
@@ -59,7 +58,6 @@
@$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> unit.tmp
@$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> unit.tmp
@$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> unit.tmp
- @$(ECHOPATH) s=@TARGETS_TO_BUILD@=$(TARGETS_TO_BUILD)=g >> unit.tmp
@$(ECHOPATH) s=@LLVM_BUILD_MODE@=$(BuildMode)=g >> unit.tmp
@$(ECHOPATH) s=@ENABLE_SHARED@=$(ENABLE_SHARED)=g >> unit.tmp
@$(ECHOPATH) s=@SHLIBDIR@=$(SharedLibDir)=g >> unit.tmp
Modified: cfe/trunk/test/Unit/lit.site.cfg.in
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Unit/lit.site.cfg.in?rev=132491&r1=132490&r2=132491&view=diff
==============================================================================
--- cfe/trunk/test/Unit/lit.site.cfg.in (original)
+++ cfe/trunk/test/Unit/lit.site.cfg.in Thu Jun 2 16:55:39 2011
@@ -10,12 +10,6 @@
config.shlibdir = "@SHLIBDIR@"
config.shlibpath_var = "@SHLIBPATH_VAR@"
config.target_triple = "@TARGET_TRIPLE@"
-config.targets_to_build = "@TARGETS_TO_BUILD@"
-
-# Exclude not supported target-specific tests.
-config.excludes = []
-if not 'X86' in config.targets_to_build:
- config.excludes.append('X86')
# Support substitution of the tools_dir, libs_dirs, and build_mode with user
# parameters. This is used when we can't determine the tool dir at
Modified: cfe/trunk/test/lit.site.cfg.in
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.site.cfg.in?rev=132491&r1=132490&r2=132491&view=diff
==============================================================================
--- cfe/trunk/test/lit.site.cfg.in (original)
+++ cfe/trunk/test/lit.site.cfg.in Thu Jun 2 16:55:39 2011
@@ -7,12 +7,6 @@
config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
config.clang_obj_root = "@CLANG_BINARY_DIR@"
config.target_triple = "@TARGET_TRIPLE@"
-config.targets_to_build = "@TARGETS_TO_BUILD@"
-
-# Exclude not supported target-specific tests.
-config.excludes = []
-if not 'X86' in config.targets_to_build:
- config.excludes.append('X86')
# Support substitution of the tools and libs dirs with user parameters. This is
# used when we can't determine the tool dir at configuration time.
More information about the cfe-commits
mailing list