diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-06-25 19:16:12 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-06-25 19:16:12 +0200 |
commit | c4ba7c44ff03d67ff982bbab26dc48d796041e02 (patch) | |
tree | 500071e2c7fa262c2a1e054e23a25a7470d192a4 /test/libapt/makefile | |
parent | 98ee7cd35cf205c52b3698ee91cec76d704a3937 (diff) |
add a simple stack handling to be able to delay error handling
Diffstat (limited to 'test/libapt/makefile')
-rw-r--r-- | test/libapt/makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/libapt/makefile b/test/libapt/makefile index ee3401b35..50058262e 100644 --- a/test/libapt/makefile +++ b/test/libapt/makefile @@ -30,13 +30,19 @@ SOURCE = getlistoffilesindir_test.cc include $(PROGRAM_H) # Program for testing CommandLine reconstruction -PROGRAM = commandlineasstring${BASENAME} +PROGRAM = CommandlineAsString${BASENAME} SLIBS = -lapt-pkg SOURCE = commandlineasstring_test.cc include $(PROGRAM_H) # Program for testing debians version comparing -PROGRAM = compareversion${BASENAME} +PROGRAM = CompareVersion${BASENAME} SLIBS = -lapt-pkg SOURCE = compareversion_test.cc include $(PROGRAM_H) + +# test the GlobalError stack class +PROGRAM = GlobalError${BASENAME} +SLIBS = -lapt-pkg +SOURCE = globalerror_test.cc +include $(PROGRAM_H) |