aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-09-07 18:26:19 -0700
committerMichael Bebenita <[email protected]>2010-09-07 18:41:08 -0700
commita6aebdaedd4abb95b040c9cd09cfdb6b9b940789 (patch)
treec143ba57b7ac8cf5a93f6871abb8a496f50e6fe6 /src/Makefile
parentSmall updates to util classes. (diff)
downloadrust-a6aebdaedd4abb95b040c9cd09cfdb6b9b940789.tar.xz
rust-a6aebdaedd4abb95b040c9cd09cfdb6b9b940789.zip
Started work on a framework for writing runtime tests, added some simple test cases.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 0f0382e2..827eb2ee 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -269,7 +269,9 @@ RUNTIME_CS := rt/sync/timer.cpp \
rt/isaac/randport.cpp \
rt/rust_srv.cpp \
rt/rust_kernel.cpp \
- rt/memory_region.cpp
+ rt/memory_region.cpp \
+ rt/test/rust_test_harness.cpp \
+ rt/test/rust_test_util.cpp
RUNTIME_HDR := rt/globals.h \
rt/rust.h \
@@ -294,7 +296,9 @@ RUNTIME_HDR := rt/globals.h \
rt/rust_srv.h \
rt/rust_kernel.h \
rt/memory_region.h \
- rt/memory.h
+ rt/memory.h \
+ rt/test/rust_test_harness.h \
+ rt/test/rust_test_util.h
RUNTIME_INCS := -Irt/isaac -Irt/uthash
RUNTIME_OBJS := $(RUNTIME_CS:.cpp=$(CFG_OBJ_SUFFIX))