]> git.saurik.com Git - apt.git/blobdiff - test/scratch.cc
Version compare glitch
[apt.git] / test / scratch.cc
index 7cd43c55469b2d4746b9059b4ef88ff407b6863a..de306e802f5926855ba97cedc90aa4b4f78217f1 100644 (file)
@@ -1,14 +1,16 @@
 #include <apt-pkg/acquire-item.h>
 #include <apt-pkg/acquire-item.h>
+#include <apt-pkg/acquire-worker.h>
 #include <apt-pkg/init.h>
 #include <apt-pkg/error.h>
 #include <apt-pkg/init.h>
 #include <apt-pkg/error.h>
-#include <signal.h>
 #include <strutl.h>
 
 #include <strutl.h>
 
+#include <signal.h>
+#include <stdio.h>
+
 int main(int argc,char *argv[])
 {
 int main(int argc,char *argv[])
 {
-   signal(SIGPIPE,SIG_IGN);
 
 
-/*   URI Foo(argv[1]);
+   URI Foo(argv[1]);
    cout << Foo.Access << '\'' << endl;
    cout << Foo.Host << '\'' << endl;
    cout << Foo.Path << '\'' << endl;
    cout << Foo.Access << '\'' << endl;
    cout << Foo.Host << '\'' << endl;
    cout << Foo.Path << '\'' << endl;
@@ -16,23 +18,5 @@ int main(int argc,char *argv[])
    cout << Foo.Password << '\'' << endl;
    cout << Foo.Port << endl;
    
    cout << Foo.Password << '\'' << endl;
    cout << Foo.Port << endl;
    
-   return 0;*/
-   
-   pkgInitialize(*_config);
-   
-   pkgSourceList List;
-   pkgAcquire Fetcher;
-   List.ReadMainList();
-   
-   pkgSourceList::const_iterator I;
-   for (I = List.begin(); I != List.end(); I++)
-   {
-      new pkgAcqIndex(&Fetcher,I);
-      if (_error->PendingError() == true)
-        break;
-   }
-
-   Fetcher.Run();
-   
-   _error->DumpErrors();
+   return 0;
 }
 }