]> git.saurik.com Git - apt.git/blobdiff - test/scratch.cc
Fixed sparc compile warning
[apt.git] / test / scratch.cc
index a8817bc4116ad55202bf1b234788569f9ef6cf67..dc02e059a3d275f7b9b50899c9c363ff4bf4e16a 100644 (file)
@@ -1,27 +1,21 @@
-#include <apt-pkg/acquire-item.h>
-#include <apt-pkg/init.h>
-#include <apt-pkg/error.h>
+#include <apt-pkg/tagfile.h>
+
 #include <signal.h>
+#include <stdio.h>
 
-int main()
+int main(int argc,char *argv[])
 {
-   signal(SIGPIPE,SIG_IGN);
-   
-   pkgInitialize(*_config);
+   FileFd F(argv[1],FileFd::ReadOnly);
+   pkgTagFile Reader(F);
    
-   pkgSourceList List;
-   pkgAcquire Fetcher;
-   List.ReadMainList();
-   
-   pkgSourceList::const_iterator I;
-   for (I = List.begin(); I != List.end(); I++)
+   pkgTagSection Sect;
+   while (Reader.Step(Sect) == true)
    {
-      new pkgAcqIndex(&Fetcher,I);
-      if (_error->PendingError() == true)
-        break;
-   }
-
-   Fetcher.Run();
+      Sect.FindS("Package");
+      Sect.FindS("Section");
+      Sect.FindS("Version");
+      Sect.FindI("Size");
+   };
    
-   _error->DumpErrors();
+   return 0;
 }