diff options
author | Chris Lattner <sabre@nondot.org> | 2002-01-23 21:56:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-01-23 21:56:15 +0000 |
commit | ad637cc8ceb101581e35b636216ad9696c8b0b18 (patch) | |
tree | 6a6c417e5189c81e52ecd84d6f2a74f0e241cd21 | |
parent | b95e7d5a0bff8409fc543e575096b1398f93a1be (diff) | |
download | external_llvm-ad637cc8ceb101581e35b636216ad9696c8b0b18.zip external_llvm-ad637cc8ceb101581e35b636216ad9696c8b0b18.tar.gz external_llvm-ad637cc8ceb101581e35b636216ad9696c8b0b18.tar.bz2 |
Initial Checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1577 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CFrontend/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CFrontend/Makefile b/test/CFrontend/Makefile new file mode 100644 index 0000000..c1bbe03 --- /dev/null +++ b/test/CFrontend/Makefile @@ -0,0 +1,16 @@ +# test/Regression/CFrontend/Makefile +# +# This directory contains regression tests for the GCC C frontend for LLVM. +# These tests are C source files that are input to GCC and compiled to .ll +# files. After that, the files are assembled by the LLVM 'as' program to make +# sure GCC emitted something valid. This is intended to catch crashers and bad +# output by GCC. +# +# TODO: If the verify pass ever gets written, it should be run on the output. +# +LEVEL = ../../.. +include $(LEVEL)/test/Makefile.tests + +TESTS := $(wildcard *.c) + +all:: $(addprefix Output/, $(TESTS:%.c=%.tbc)) |