1. 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
  2. 14 11月, 2017 1 次提交
  3. 10 11月, 2017 1 次提交
    • L
      optional_plugins: Use stdout&stderr to get version · 76f0476c
      Lukáš Doktor 提交于
      Recent changes to remote runner use only stderr to get Avocado version,
      but the docker plugin does not return separate stream for stdout and
      stderr, therefor it always fails to get the version string. This patch
      uses combination of stdeerr + stdout, which should be safe as we only
      care about the first occurrence (so in case both stderr and stdout
      produce version string, the stderr one will be used, anyway such
      question is only hypothetical)
      Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
      76f0476c
  4. 02 11月, 2017 1 次提交
  5. 01 11月, 2017 4 次提交
  6. 29 10月, 2017 1 次提交
  7. 19 10月, 2017 1 次提交
  8. 17 10月, 2017 9 次提交
  9. 16 10月, 2017 17 次提交
  10. 14 10月, 2017 4 次提交