1. 25 11月, 2014 2 次提交
    • C
      GDB: let user choose the GDB binary to use · 7c371623
      Cleber Rosa 提交于
      Developers using Avocado's GDB support may need to use their custom
      build of GDB, or simply their system has GDB at a different location.
      So, allow users to optionally specify the path to the GDB binary.
      
      Also, allow GDB API users to pass extra options to GDB via the command
      line.
      
      Changes from v1:
         * use `avocado.utils.process.find_command` as the first default
           location for the gdb binary, falling back to the hard coded
           default of `/usr/bin/gdb` if that fails.
      Signed-off-by: NCleber Rosa <crosa@redhat.com>
      7c371623
    • L
      Merge pull request #257 from ldoktor/travis · c07b63ef
      Lucas Meneghel Rodrigues 提交于
      selftest.run: Don't use coverage and xunit by default
      c07b63ef
  2. 21 11月, 2014 1 次提交
  3. 19 11月, 2014 4 次提交
  4. 14 11月, 2014 1 次提交
  5. 13 11月, 2014 3 次提交
  6. 12 11月, 2014 1 次提交
  7. 11 11月, 2014 6 次提交
  8. 06 11月, 2014 4 次提交
  9. 05 11月, 2014 1 次提交
  10. 04 11月, 2014 1 次提交
    • R
      avocado.utils.script: Introduce script module. · 2b1e807b
      Rudá Moura 提交于
      Introduce avocado.utils.script module to handle the creation
      of scripts stored in the file system.
      
      The module includes a flexible class for creating generic scripts and
       includes utilities functions too. Some examples:
      
          CONTENT = """
          #!/bin/sh
          echo "Hi There!"
          """
      
          x = avocado.utils.script.Script('/var/tmp/test.sh', CONTENT)
          x.save()
          ... do something with x, like run it ...
          x.remove()
      
          t = avocado.utils.script.make_temp_script('test.sh', CONTENT)
          ... do something with y, like run it ...
      
      Avocado functional tests makes use of script creation,
      so we will handle these creation using this proper module.
      Signed-off-by: NRudá Moura <rmoura@redhat.com>
      2b1e807b
  11. 21 10月, 2014 1 次提交
  12. 20 10月, 2014 1 次提交
  13. 13 10月, 2014 2 次提交
  14. 10 10月, 2014 3 次提交
  15. 09 10月, 2014 3 次提交
  16. 08 10月, 2014 6 次提交