From 129a22cfcc7651daa4b11ed52e7870249f6373a5 Mon Sep 17 00:00:00 2001 From: Patrick Simianer
Date: Tue, 16 Sep 2014 10:23:14 +0100
Subject: spring cleaning
---
fast/test/Makefile | 19 -------------------
fast/test/test_grammar | Bin 60943 -> 0 bytes
fast/test/test_grammar.cc | 20 --------------------
fast/test/test_sparse_vector | Bin 44288 -> 0 bytes
fast/test/test_sparse_vector.cc | 37 -------------------------------------
5 files changed, 76 deletions(-)
delete mode 100644 fast/test/Makefile
delete mode 100755 fast/test/test_grammar
delete mode 100644 fast/test/test_grammar.cc
delete mode 100755 fast/test/test_sparse_vector
delete mode 100644 fast/test/test_sparse_vector.cc
(limited to 'fast/test')
diff --git a/fast/test/Makefile b/fast/test/Makefile
deleted file mode 100644
index 65e97ef..0000000
--- a/fast/test/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-COMPILER=g++
-CFLAGS=-std=c++11 -O3 -I../
-TCMALLOC=/home/pks/src/weaver/fast/gperftools-2.1/lib/libtcmalloc_minimal.a -pthread
-
-
-all: test_grammar test_sparse_vector test_parse
-
-test_grammar: test_grammar.cc ../grammar.hh
- $(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) test_grammar.cc -o test_grammar
-
-test_sparse_vector: test_sparse_vector.cc ../sparse_vector.hh
- $(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) test_sparse_vector.cc -o test_sparse_vector
-
-test_parse: test_parse.cc ../parse.hh ../grammar.hh ../util.hh
- $(COMPILER) $(CFLAGS) -lstdc++ -lm $(TCMALLOC) test_parse.cc -o test_parse
-
-clean:
- rm -f test_grammar test_sparse_vector
-
diff --git a/fast/test/test_grammar b/fast/test/test_grammar
deleted file mode 100755
index 6cf7ad5..0000000
Binary files a/fast/test/test_grammar and /dev/null differ
diff --git a/fast/test/test_grammar.cc b/fast/test/test_grammar.cc
deleted file mode 100644
index bbe76e7..0000000
--- a/fast/test/test_grammar.cc
+++ /dev/null
@@ -1,20 +0,0 @@
-#include