summaryrefslogtreecommitdiff
path: root/ept/apt
diff options
context:
space:
mode:
authorEnrico Zini <enrico@enricozini.org>2010-07-14 23:09:08 +0100
committerEnrico Zini <enrico@enricozini.org>2010-07-14 23:09:08 +0100
commit31f61126dac7bcfa0fd10bed289ae1642f90c112 (patch)
tree70e653a29d529508962ebf5776c51a72271aafb5 /ept/apt
parente4bd18c706aae19e6984424bfdb8d1a18de27c50 (diff)
downloadlibept-31f61126dac7bcfa0fd10bed289ae1642f90c112.tar.gz
Added debugging prints to help debug #587764
Diffstat (limited to 'ept/apt')
-rw-r--r--ept/apt/apt.test.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ept/apt/apt.test.h b/ept/apt/apt.test.h
index cc9602e..0937411 100644
--- a/ept/apt/apt.test.h
+++ b/ept/apt/apt.test.h
@@ -111,9 +111,11 @@ struct TestApt : AptTestEnvironment {
{
string pkg("sp");
Version ver = apt.candidateVersion(pkg);
+ cerr << "CAND VER " << ver.name() << " v " << ver.version() << endl;
assert(apt.validate(ver) == ver);
string record = apt.rawRecord(ver);
+ cerr << "GOT RECORD:" << endl << record << "---------" << endl;
assert(record.find("Package: sp") != string::npos);
assert(record.find("Section: text") != string::npos);