mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Unit tests - subst
- Implemented basic subst tests, awaiting Record/T integration before this can be expanded.
This commit is contained in:
parent
54789082c9
commit
4fda101f28
2 changed files with 68 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
|||
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t text.t autocomplete.t \
|
||||
parse.t seq.t att.t mod.t stringtable.t # record.t
|
||||
parse.t seq.t att.t mod.t stringtable.t # subst.t record.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 ../Duration.o \
|
||||
../util.o ../Config.o ../Sequence.o ../Att.o ../Record.o ../Mod.o \
|
||||
../StringTable.o
|
||||
../StringTable.o ../Subst.o
|
||||
|
||||
all: $(PROJECT)
|
||||
|
||||
|
@ -59,3 +59,6 @@ att.t: att.t.o $(OBJECTS) test.o
|
|||
stringtable.t: stringtable.t.o $(OBJECTS) test.o
|
||||
g++ stringtable.t.o $(OBJECTS) test.o $(LFLAGS) -o stringtable.t
|
||||
|
||||
subst.t: subst.t.o $(OBJECTS) test.o
|
||||
g++ subst.t.o $(OBJECTS) test.o $(LFLAGS) -o subst.t
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue