diff options
author | Enrico Zini <enrico@enricozini.org> | 2010-07-14 23:09:08 +0100 |
---|---|---|
committer | Enrico Zini <enrico@enricozini.org> | 2010-07-14 23:09:08 +0100 |
commit | 31f61126dac7bcfa0fd10bed289ae1642f90c112 (patch) | |
tree | 70e653a29d529508962ebf5776c51a72271aafb5 /ept/apt | |
parent | e4bd18c706aae19e6984424bfdb8d1a18de27c50 (diff) | |
download | libept-31f61126dac7bcfa0fd10bed289ae1642f90c112.tar.gz |
Added debugging prints to help debug #587764
Diffstat (limited to 'ept/apt')
-rw-r--r-- | ept/apt/apt.test.h | 2 |
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); |