diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2013-03-18 12:10:35 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2013-03-18 12:10:35 +0100 |
commit | c8b860fb8d0f1531f99db4fad74f5892c6806f1b (patch) | |
tree | b85add0077c0e280d44292073bb68a250f543101 /test/libapt/makefile | |
parent | 55971004215609a02ca19c59bd058da20729ba11 (diff) |
fix pkgTagSection::Exists() and add test
Diffstat (limited to 'test/libapt/makefile')
-rw-r--r-- | test/libapt/makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/libapt/makefile b/test/libapt/makefile index 5e225f240..953e455e0 100644 --- a/test/libapt/makefile +++ b/test/libapt/makefile @@ -93,8 +93,15 @@ SLIBS = -lapt-pkg SOURCE = cdromreducesourcelist_test.cc include $(PROGRAM_H) -# text IndexCopy::ConvertToSourceList +# test IndexCopy::ConvertToSourceList PROGRAM = IndexCopyToSourceList${BASENAME} SLIBS = -lapt-pkg SOURCE = indexcopytosourcelist_test.cc include $(PROGRAM_H) + +# test tagfile +PROGRAM = PkgTagFile${BASENAME} +SLIBS = -lapt-pkg +SOURCE = tagfile_test.cc +include $(PROGRAM_H) + |