1. 19 11月, 2015 1 次提交
  2. 08 6月, 2015 1 次提交
    • M
      utiltest: Use int8_t instead of char. · ceb46a66
      Michal Privoznik 提交于
      Not every architecture out there has 'char' signed by default.
      For instance, my arm box has it unsigned by default:
      
        $ gcc -dM -E - < /dev/null | grep __CHAR_UNSIGNED__
        #define __CHAR_UNSIGNED__ 1
      
      Therefore, after 65c61e50 the test if failing for me. Problem is,
      we are trying to assign couple of negative values into char
      assuming some will overflow and some don't. That can't be the
      case if 'char' is unsigned by default. Lets use more explicit types
      instead: int8_t and uint8_t where is no ambiguity.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      ceb46a66
  3. 03 6月, 2015 1 次提交
  4. 24 4月, 2015 1 次提交
  5. 25 11月, 2014 1 次提交
  6. 15 11月, 2014 1 次提交
  7. 08 10月, 2013 1 次提交
  8. 17 9月, 2013 1 次提交
    • P
      test: Refactor setting of dummy error handlers · 43f68a4f
      Peter Krempa 提交于
      Multiple tests need to register a function to quiesce errors from
      libvirt when using a connection and doing negative tests. Each of those
      tests had a static function to do so. This can be replaced by a utility
      function that enables the errors when debug is enabled.
      
      This patch adds virtTestQuiesceLibvirtErrors() and refactors test that
      use private handlers.
      43f68a4f
  9. 11 7月, 2013 1 次提交
  10. 21 12月, 2012 2 次提交
  11. 02 7月, 2011 2 次提交