- 07 7月, 2014 2 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Add a test that exercises the multiplex system, as well as the system to access parameters passed to the test (self.params). Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Access test params through its internal dictionary, so you can lookup self.params.timeout As well as self.params['timeout'] Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 24 6月, 2014 7 次提交
-
-
由 Rudá Moura 提交于
Fix archive mistake
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Now there's no more uncompress_zip. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Rudá Moura 提交于
New archive module
-
由 Lucas Meneghel Rodrigues 提交于
Verify the functionality of each new API wrapped. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Rudá Moura 提交于
This is a new implementation of avocado.utils.archive, built upon Python stdlib zipfile and tarfile modules, with a class that creates zip files or tarballs based on the filename and a few helper functions, to create and extract compressed files. Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
- 18 6月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Results spec
-
- 14 6月, 2014 10 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
This time, using the Sysinfo Logger class. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
That explains the dir structure for avocado test results. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Take system info in more opportunities: 1) Start job 2) End job 3) Start test 4) End test Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Add test linuxbuild (build Linux kernel)
-
由 Rudá Moura 提交于
Test subprocess improvements
-
由 Lucas Meneghel Rodrigues 提交于
Since we are using signals as a form of IPC (inter process communication), let's use SIGUSR1, which is a user defined signal that won't be easily mistaken with the more common SIGTERM, that can be issued far more commonly. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Rudá Moura 提交于
Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 12 6月, 2014 15 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
avocado.utils.archive: preserve permissions. when extracting.
-
由 Rudá Moura 提交于
Preserve file permissions when extracting data from tarballs, so in some tests we have we don't need to set permissions too. Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
由 Rudá Moura 提交于
Multiple output plugins
-
由 Lucas Meneghel Rodrigues 提交于
Some brief documentation on the JSON output plugin and multiple output plugins. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
This way, tests in vm that fail won't trigger a problem on XML outputs and crash avocado. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
As it was missing, causing an error with the json output. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
As I realized we did not have the journal plugin out here. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Add extra tests that verify that the always on output plugins (JSON and Xunit inside the debug dir) are being correctly generated and the outputs are valid. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
As specified in the requirements meeting, always have Xunit and JSON outputs written to the results dir. The basic idea is to enable any output plugins specified in the cmd line, the Xunit and JSON compulsorily, and in the end, if there are no output plugins requested in the command line, enable human output. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
It's necessary if we're generating valid outputs in the appropriate places, and that they respect the rules established so far. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
With the new attributes, change the output setup procedure to verify if more than one output plugin wants to use the stdout, in which case we print an error message and fail. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
In order to be able to tell whether there's more than one output plugin trying to use the stdout, add the 'output' and 'output_option' attributes. This changes the current output plugins to use and set these attributes correctly. Fix the xunit unittest to take into account the new attribute names. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Set up the TestResultProxy for the Job object, and populate the test result objects according to what the currently active plugins set. This means we go on finding arguments with the suffix _result and selecting any values that are classes derived from TestResult and appending them to the result proxy. With this, we can use any number of test result plugins we'd like. If no test result objects are set by plugins, fall back to the human output plugin. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Create a class that has the same interface as a test result, but in fact has a list of test result objects and can write to each of them any time a test result operation is called. This is the first step to make multiple output plugins to work. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Virt off if remote off
-
- 11 6月, 2014 5 次提交
-
-
由 Rudá Moura 提交于
Log message if remote or virt module is off. Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
由 Rudá Moura 提交于
Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Test execution isolation using subprocesses and timeout feature
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-