1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/CFrontend/Makefile
Chris Lattner f71891f2e0 Add new testcase
llvm-svn: 7229
2003-07-22 16:18:09 +00:00

21 lines
761 B
Makefile

# 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. Miscompilations by GCC should be caught by the
# test/Programs/SingleSource/UnitTests test suite
#
LEVEL = ../../..
include $(LEVEL)/test/Makefile.tests
TESTS := $(wildcard *.c)
TR_TESTS := $(wildcard *.c.tr)
all:: $(addprefix Output/, $(TESTS:%.c=%.tbc))
all:: $(addprefix Output/, $(TR_TESTS:%=%.out))
Output/%.c.tr.out: %.c.tr Output/.dir $(LCC1)
-$(TESTRUNR) $<