diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2017-07-19 21:58:44 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2017-07-19 22:29:18 +0100 |
commit | 7aa7f0aaebca40288c5dee038cf7bc84bf1462a4 (patch) | |
tree | c583f7f13f92f08086a7b72c78a87ea28394f07f /unittests/TreeStream/Makefile | |
parent | d7c2deaa9c3762a3735029d408ede82d5c046433 (diff) | |
download | klee-7aa7f0aaebca40288c5dee038cf7bc84bf1462a4.tar.gz |
Added some unit tests for TreeStream: one testing some basic behaviour, the other a regression test for #562
Diffstat (limited to 'unittests/TreeStream/Makefile')
-rw-r--r-- | unittests/TreeStream/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/unittests/TreeStream/Makefile b/unittests/TreeStream/Makefile new file mode 100644 index 00000000..a56659b9 --- /dev/null +++ b/unittests/TreeStream/Makefile @@ -0,0 +1,11 @@ +##===- unittests/Expr/Makefile -----------------------------*- Makefile -*-===## + +LEVEL := ../.. +include $(LEVEL)/Makefile.config + +TESTNAME := TreeStreamTest +USEDLIBS := kleeBasic.a kleeSupport.a +LINK_COMPONENTS := support + +include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest + |