1. 23 4月, 2018 3 次提交
  2. 04 4月, 2018 4 次提交
  3. 28 3月, 2018 2 次提交
  4. 21 3月, 2018 7 次提交
  5. 09 3月, 2018 5 次提交
  6. 01 3月, 2018 1 次提交
  7. 24 1月, 2018 1 次提交
  8. 23 1月, 2018 1 次提交
  9. 22 1月, 2018 1 次提交
    • L
      libexec: Move libexec to package_files · e9ebbb79
      Lukáš Doktor 提交于
      With the recent changes the "libexec" dir is only available when
      installed via RPM. In order to have "libexec" files available
      as standard package we have to include it in  the package_files
      dir (avocado/). The benefit is that we can actually use package
      resources to get the location in "avocado exec-path" command.
      
      For packaging purposes let's simply symlink $libexec/avocado to the
      packaged $avocado/libexec location so there is the usual location, but
      keep using the python-location by default.
      Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
      e9ebbb79
  10. 16 1月, 2018 5 次提交
  11. 20 12月, 2017 2 次提交
  12. 19 12月, 2017 1 次提交
  13. 16 12月, 2017 1 次提交
  14. 21 11月, 2017 1 次提交
  15. 19 11月, 2017 1 次提交
    • C
      optional_plugins: introduce a PICT based varianter · a753b782
      Cleber Rosa 提交于
      PICT is a free software (MIT licensed) tool that implements
      combinatorial testing.  Information about it can be found here:
      
         https://github.com/Microsoft/pict/
      
      This is a very simple, but functional varianter implementation.  It
      performs the basic tasks of creating variants and making parameters
      accessible to tests.  To test this version, it's recommended to
      download PICT, build it (it only takes a C compiler such as GCC or
      clang and make) and put it in a location included in your PATH (or use
      `--pict-binary`).
      
      To list the variants generated with the default order (2, that is,
      do a pairwise idenpendent combinatorial testing):
      
       $ avocado variants --pict-parameter-file=examples/params.pict
       Pict Variants (11):
       Variant amd-scsi-rtl8139-windows-rhel6-acff:    /run
       ...
       Variant amd-ide-e1000-linux-rhel6-eb43:    /run
      
      To list the variants generated with a 3-way combination:
      
       $ avocado variants --pict-parameter-file=examples/params.pict \
         --pict-order-of-combinations=3
      
       Pict Variants (28):
       Variant intel-ide-virtio-windows-rhel7-aea5:    /run
       ...
       Variant intel-scsi-e1000-linux-rhel7-9f61:    /run
      
      It's also possible to run tests with variants generated by the same
      command line switches.
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      a753b782
  16. 17 10月, 2017 3 次提交
  17. 06 10月, 2017 1 次提交