Unit Tests - text

- Added unit tests to verify correct functioning of the text utility
  code.
This commit is contained in:
Paul Beckingham 2009-03-19 20:48:02 -04:00
parent 7389ce617a
commit cc2220b406
3 changed files with 221 additions and 2 deletions

View file

@ -1,4 +1,4 @@
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t text.t
CFLAGS = -I. -I.. -Wall -pedantic -ggdb3 -fno-rtti
LFLAGS = -L/usr/local/lib
OBJECTS = ../TDB.o ../T.o ../parse.o ../text.o ../Date.o ../util.o ../Config.o
@ -32,3 +32,6 @@ duration.t: duration.t.o $(OBJECTS) test.o
t.benchmark.t: t.benchmark.t.o $(OBJECTS) test.o
g++ t.benchmark.t.o $(OBJECTS) test.o $(LFLAGS) -o t.benchmark.t
text.t: text.t.o $(OBJECTS) test.o
g++ text.t.o $(OBJECTS) test.o $(LFLAGS) -o text.t