init DBusError variable properly
authorKlaus Kaempf <kkaempf@suse.de>
Fri, 13 Jan 2006 15:39:49 +0000 (15:39 +0000)
committerKlaus Kaempf <kkaempf@suse.de>
Fri, 13 Jan 2006 15:39:49 +0000 (15:39 +0000)
adapt testcase for unsupported implementation

zypp/target/hal/Hal.cc
zypp/target/testsuite/tests/hal.cc

index 0de8a6dd3e2849c2eec710cc36893c107bb0bea9..0bf7df3f1f58cc513e36202ea963256033dccd37 100644 (file)
@@ -123,6 +123,7 @@ struct Hal::Impl
               const std::string & val_r ) const
     {
        DBusError error;
+       dbus_error_init (&error);
 
        // ask HAL which devices provide the needed capability
 
index 90c6c915489b464210e473a4f103f84314ed7b69..1d829122971c8a87fa7e474f6c2c5c54691cdb13 100644 (file)
@@ -1,4 +1,3 @@
-#include <string.h>
 #include "zypp/target/hal/Hal.h"
 
 using namespace zypp::target::hal;
@@ -11,8 +10,8 @@ main (int argc, char *argv[])
   if (!hal.query ("processor"))
        return 1;
 
-  if (hal.query ("processor", zypp::Rel::LT, "1"))
-       return 1;
+  if (!hal.query ("processor", zypp::Rel::GT, "0"))            // not supported yet
+       return 2;
 
   return 0;
 }