[cfe-commits] r71274 - in /cfe/trunk/utils/ABITest: Makefile.test.common return-types-32/Makefile return-types-64/Makefile return-types/ single-args-32/Makefile single-args-64/Makefile

Daniel Dunbar daniel at zuster.org
Fri May 8 15:49:52 PDT 2009


Author: ddunbar
Date: Fri May  8 17:49:52 2009
New Revision: 71274

URL: http://llvm.org/viewvc/llvm-project?rev=71274&view=rev
Log:
ABITest: Move more of the common Makefile bits into the common
Makefile.

Removed:
    cfe/trunk/utils/ABITest/return-types/
Modified:
    cfe/trunk/utils/ABITest/Makefile.test.common
    cfe/trunk/utils/ABITest/return-types-32/Makefile
    cfe/trunk/utils/ABITest/return-types-64/Makefile
    cfe/trunk/utils/ABITest/single-args-32/Makefile
    cfe/trunk/utils/ABITest/single-args-64/Makefile

Modified: cfe/trunk/utils/ABITest/Makefile.test.common
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ABITest/Makefile.test.common?rev=71274&r1=71273&r2=71274&view=diff

==============================================================================
--- cfe/trunk/utils/ABITest/Makefile.test.common (original)
+++ cfe/trunk/utils/ABITest/Makefile.test.common Fri May  8 17:49:52 2009
@@ -1,6 +1,25 @@
 # -*- Makefile -*-
 
-TESTARGS := --no-unsigned --no-vector --no-complex --no-bool --no-bit-field
+# Usage: make test.N.report 
+#
+# COUNT can be over-ridden to change the number of tests generated per
+# file, and TESTARGS is used to change the type generation. Make sure
+# to 'make clean' after changing either of these parameters.
+
+TESTARGS := --no-unsigned --no-vector --no-complex --no-bool
+
+COUNT := 1
+TIMEOUT := 5
+
+CFLAGS := -std=gnu99
+
+X_COMPILER := gcc
+X_LL_CFLAGS := -emit-llvm -S
+Y_COMPILER := clang
+Y_LL_CFLAGS := -emit-llvm -S
+CC := gcc
+
+###
 
 ABITESTGEN := ../ABITestGen.py
 

Modified: cfe/trunk/utils/ABITest/return-types-32/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ABITest/return-types-32/Makefile?rev=71274&r1=71273&r2=71274&view=diff

==============================================================================
--- cfe/trunk/utils/ABITest/return-types-32/Makefile (original)
+++ cfe/trunk/utils/ABITest/return-types-32/Makefile Fri May  8 17:49:52 2009
@@ -1,20 +1,3 @@
-# Usage: make test.N.report 
-#
-# COUNT can be over-ridden to change the number of tests generated per
-# file, and TESTARGS is used to change the type generation. Make sure
-# to 'make clean' after changing either of these parameters.
-
-COUNT := 1
-TIMEOUT := 5
-
-CFLAGS := -std=gnu99
-
-X_COMPILER := gcc
-X_LL_CFLAGS := -emit-llvm -S
-Y_COMPILER := clang
-Y_LL_CFLAGS := -emit-llvm -S
-CC := gcc
-
 X_CFLAGS := -m32
 Y_CFLAGS := -m32
 CC_CFLAGS := -m32

Modified: cfe/trunk/utils/ABITest/return-types-64/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ABITest/return-types-64/Makefile?rev=71274&r1=71273&r2=71274&view=diff

==============================================================================
--- cfe/trunk/utils/ABITest/return-types-64/Makefile (original)
+++ cfe/trunk/utils/ABITest/return-types-64/Makefile Fri May  8 17:49:52 2009
@@ -1,20 +1,3 @@
-# Usage: make test.N.report 
-#
-# COUNT can be over-ridden to change the number of tests generated per
-# file, and TESTARGS is used to change the type generation. Make sure
-# to 'make clean' after changing either of these parameters.
-
-COUNT := 1
-TIMEOUT := 5
-
-CFLAGS := -std=gnu99
-
-X_COMPILER := gcc
-X_LL_CFLAGS := -emit-llvm -S
-Y_COMPILER := clang
-Y_LL_CFLAGS := -emit-llvm -S
-CC := gcc
-
 X_CFLAGS := -m64
 Y_CFLAGS := -m64
 CC_CFLAGS := -m64

Modified: cfe/trunk/utils/ABITest/single-args-32/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ABITest/single-args-32/Makefile?rev=71274&r1=71273&r2=71274&view=diff

==============================================================================
--- cfe/trunk/utils/ABITest/single-args-32/Makefile (original)
+++ cfe/trunk/utils/ABITest/single-args-32/Makefile Fri May  8 17:49:52 2009
@@ -1,20 +1,3 @@
-# Usage: make test.N.report 
-#
-# COUNT can be over-ridden to change the number of tests generated per
-# file, and TESTARGS is used to change the type generation. Make sure
-# to 'make clean' after changing either of these parameters.
-
-COUNT := 1
-TIMEOUT := 5
-
-CFLAGS := -std=gnu99
-
-X_COMPILER := gcc
-X_LL_CFLAGS := -emit-llvm -S
-Y_COMPILER := clang
-Y_LL_CFLAGS := -emit-llvm -S
-CC := gcc
-
 X_CFLAGS := -m32
 Y_CFLAGS := -m32
 CC_CFLAGS := -m32

Modified: cfe/trunk/utils/ABITest/single-args-64/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ABITest/single-args-64/Makefile?rev=71274&r1=71273&r2=71274&view=diff

==============================================================================
--- cfe/trunk/utils/ABITest/single-args-64/Makefile (original)
+++ cfe/trunk/utils/ABITest/single-args-64/Makefile Fri May  8 17:49:52 2009
@@ -4,17 +4,6 @@
 # file, and TESTARGS is used to change the type generation. Make sure
 # to 'make clean' after changing either of these parameters.
 
-COUNT := 1
-TIMEOUT := 5
-
-CFLAGS := -std=gnu99
-
-X_COMPILER := gcc
-X_LL_CFLAGS := -emit-llvm -S
-Y_COMPILER := clang
-Y_LL_CFLAGS := -emit-llvm -S
-CC := gcc
-
 X_CFLAGS := -m64
 Y_CFLAGS := -m64
 CC_CFLAGS := -m64





More information about the cfe-commits mailing list