summaryrefslogtreecommitdiff
path: root/test/libapt/cdrom_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* fix memory leaks reported by -fsanitizeDavid Kalnischkies2015-08-101-4/+3
| | | | | | | | Various small leaks here and there. Nothing particularily big, but still good to fix. Found by the sanitizers while running our testcases. Reported-By: gcc -fsanitize Git-Dch: Ignore
* tests: silence clang on uninitilized variablesDavid Kalnischkies2014-11-081-1/+2
| | | | | | | | The testcases have far worse problems if these ever end up being NULL and/or are not given a value by the method called, but clang is right to warn about it, just that we don't want to fix it in testcases… Git-Dch: Ignore
* Fix uninitialized valueMichael Vogt2014-05-281-1/+1
| | | | Reported-By: scan-build
* use Google C++ Testing Framework for libapt testsDavid Kalnischkies2014-04-161-0/+114
My commit 45df0ad2 from 26. Nov 2009 had a little remark: "The commit also includes a very very simple testapp." This was never intended to be permanent, but as usually… The commit adds the needed make magic to compile gtest statically as it is required and links it against a small runner. All previous testcase binaries are reimplemented in gtest and combined in this runner. While most code is a 1:1 translation some had to be rewritten like compareversion_test.cc, but the coverage remains the same.