mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Unit tests
- Added tests for Transport class
This commit is contained in:
parent
04c6c11175
commit
0930f3c5f7
5 changed files with 96 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
PROJECT = t.t tdb.t date.t duration.t t.benchmark.t text.t autocomplete.t \
|
||||
config.t seq.t att.t stringtable.t record.t nibbler.t subst.t filt.t \
|
||||
cmd.t util.t color.t list.t path.t file.t directory.t grid.t rx.t \
|
||||
taskmod.t sensor.t rectangle.t tree.t tree2.t lisp.t
|
||||
taskmod.t sensor.t rectangle.t tree.t tree2.t lisp.t transport.t
|
||||
CFLAGS = -I. -I.. -I../.. -Wall -pedantic -ggdb3 -fno-rtti
|
||||
LFLAGS = -L/usr/local/lib -lpthread -lncurses -llua
|
||||
OBJECTS = ../t-TDB.o ../t-Task.o ../t-text.o ../t-Date.o ../t-Table.o \
|
||||
|
@ -105,6 +105,9 @@ rx.t: rx.t.o $(OBJECTS) test.o
|
|||
taskmod.t: taskmod.t.o $(OBJECTS) test.o
|
||||
g++ taskmod.t.o $(OBJECTS) test.o $(LFLAGS) -o taskmod.t
|
||||
|
||||
transport.t: transport.t.o $(OBJECTS) test.o
|
||||
g++ transport.t.o $(OBJECTS) test.o $(LFLAGS) -o transport.t
|
||||
|
||||
lisp.t: lisp.t.o $(OBJECTS) test.o
|
||||
g++ lisp.t.o $(OBJECTS) test.o $(LFLAGS) -o lisp.t
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue