diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-17 09:59:19 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-17 09:59:19 +0200 |
commit | 213b88053da331adf07b89ce35c8eb9cff914be4 (patch) | |
tree | d46c3fe63043dc05a71fde2bbed6b91c6a4ebee4 /test/conf.cc | |
parent | 6e7d39d0f52c02c1da991554bc8f44301369fced (diff) |
merge the tests for configuration into another libapt-test
Diffstat (limited to 'test/conf.cc')
-rw-r--r-- | test/conf.cc | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/test/conf.cc b/test/conf.cc deleted file mode 100644 index 340647b5f..000000000 --- a/test/conf.cc +++ /dev/null @@ -1,37 +0,0 @@ -#include <apt-pkg/configuration.h> -#include <apt-pkg/error.h> - -using namespace std; - -int main(int argc,const char *argv[]) -{ - Configuration Cnf; - - ReadConfigFile(Cnf,argv[1],true); - - // Process 'simple-key' type sections - const Configuration::Item *Top = Cnf.Tree("simple-key"); - for (Top = (Top == 0?0:Top->Child); Top != 0; Top = Top->Next) - { - Configuration Block(Top); - - string VendorID = Top->Tag; - string FingerPrint = Block.Find("Fingerprint"); - string Name = Block.Find("Name"); // Description? - - if (FingerPrint.empty() == true || Name.empty() == true) - _error->Error("Block %s is invalid",VendorID.c_str()); - - cout << VendorID << ' ' << FingerPrint << ' ' << Name << endl; - } - - // Print any errors or warnings found during parsing - if (_error->empty() == false) - { - bool Errors = _error->PendingError(); - _error->DumpErrors(); - return Errors == true?100:0; - } - - return 0; -} |