2004-09-04 20:13:54 +00:00
|
|
|
##===- projects/Stacker/test/Makefile ----------------------*- Makefile -*-===##
|
2003-11-23 18:12:22 +00:00
|
|
|
#
|
2004-09-04 20:13:54 +00:00
|
|
|
# This is the makefile that tests the various facilities of the Stacker language
|
2003-11-23 18:12:22 +00:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
#
|
|
|
|
# Indicates our relative path to the top of the project's root directory.
|
|
|
|
#
|
2004-09-04 20:13:54 +00:00
|
|
|
LEVEL = ../
|
2003-11-23 18:12:22 +00:00
|
|
|
|
|
|
|
#
|
2004-09-04 20:13:54 +00:00
|
|
|
# Directories that need to be built.
|
2003-11-23 18:12:22 +00:00
|
|
|
#
|
|
|
|
DIRS =
|
|
|
|
|
|
|
|
#
|
|
|
|
# Include the Master Makefile that knows how to build all.
|
|
|
|
#
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
|
|
|
LOGIC_TESTS = eq ne le ge gt lt false true
|
|
|
|
BITWISE_TESTS = shl shr xor or and
|
|
|
|
ARITHMETIC_TESTS = abs neg add sub mul div mod star_slash incr decr min max
|
|
|
|
STACK_TESTS = drop drop2 nip nip2 dup dup2 swap swap2 over over2 rot rot2 \
|
|
|
|
rrot rrot2 tuck tuck2 roll pick select
|
|
|
|
MEMORY_TESTS = memory
|
|
|
|
CONTROL_TESTS = while return
|
|
|
|
IO_TESTS = space tab out_chr out_num out_str
|
|
|
|
|
|
|
|
TESTS = $(LOGIC_TESTS) $(ARITHMETIC_TESTS) $(BITWISE_TESTS) $(STACK_TESTS) \
|
|
|
|
$(MEMORY_TESTS) $(CONTROL_TESTS) $(IO_TESTS)
|
|
|
|
|
2004-11-20 21:03:34 +00:00
|
|
|
LLVMC = $(LLVMToolDir)/llvmc
|
2003-12-08 07:08:00 +00:00
|
|
|
|
2003-11-23 18:12:22 +00:00
|
|
|
all :: test_each
|
|
|
|
|
|
|
|
test_each: $(TESTS)
|
2004-10-30 09:25:27 +00:00
|
|
|
$(Echo) "Running Tests..."
|
2005-02-14 16:04:28 +00:00
|
|
|
$(Verb) LD_LIBRARY_PATH=$(PROJ_OBJ_ROOT)/lib/$(CONFIGURATION) \
|
|
|
|
$(PROJ_SRC_DIR)/runtests $(PROJ_OBJ_DIR) $(TESTS)
|
2003-11-23 18:12:22 +00:00
|
|
|
|
2004-11-20 21:03:34 +00:00
|
|
|
% : %.st Makefile testing.bc
|
|
|
|
$(Echo) "Building $*"
|
2004-12-05 05:18:28 +00:00
|
|
|
$(Verb)$(LLVMC) -O4 -o $@ $< testing.bc $(LibDir)/stkr_runtime.bc -lcrtend
|
2003-11-23 18:12:22 +00:00
|
|
|
|
2004-11-20 21:03:34 +00:00
|
|
|
testing.bc : testing.st Makefile
|
|
|
|
$(Echo) "Compiling $*"
|
|
|
|
$(Verb)$(LLVMC) -O3 -c -o $@ $<
|
2003-11-24 02:57:25 +00:00
|
|
|
|
|
|
|
TESTS_LL = $(TESTS:%=%.ll)
|
|
|
|
TESTS_BC = $(TESTS:%=%.bc)
|
|
|
|
TESTS_S = $(TESTS:%=%.s)
|
2003-11-23 18:12:22 +00:00
|
|
|
|
|
|
|
clean ::
|
2004-11-20 21:03:34 +00:00
|
|
|
$(Verb)rm -f gmon.out $(TESTS_LL) $(TESTS_BC) $(TESTS_S) $(TESTS) \
|
|
|
|
testing.bc testing.s testing.ll
|
2003-11-23 18:12:22 +00:00
|
|
|
|
2003-11-24 02:57:25 +00:00
|
|
|
.SUFFIXES: .st .s .ll .bc
|
2003-11-23 18:12:22 +00:00
|
|
|
.PRECIOUS: %.s %.ll %.bc %.st
|
2003-11-24 02:57:25 +00:00
|
|
|
.PHONY: test_each
|