- 29 7月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
We want avocado tests to not require specific directories, the user should be able to arrange them in the dir structure they see fit. Also, if a test requires data, we suppose their data dir is located in the same directory as the source file, with the name: [modulename].data Re arrange the test dir to reflect this new structure. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 18 7月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 17 7月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 14 7月, 2014 3 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Make the names used consistent between attributes and methods inside the Test class. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
In fact those names are more clear as to the purpose of each directory. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 09 7月, 2014 1 次提交
-
-
由 Cleber Rosa 提交于
Add a new test that exercises the test whiteboard. When run multiplexed, it writes both simple text and binary random data, in different sizes and number of writes. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 08 7月, 2014 1 次提交
-
-
由 Cleber Rosa 提交于
Generates json and png images, and saves them at the newly introduced test own data dir. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 07 7月, 2014 2 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Sleep for 600 seconds, to see how avocado behaves under such circumstances. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 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>
-
- 24 6月, 2014 2 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
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>
-
- 14 6月, 2014 1 次提交
-
-
由 Rudá Moura 提交于
Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
- 12 6月, 2014 1 次提交
-
-
由 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>
-
- 11 6月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Add a timeout test module for avocado, to exercise the test timeout functionality. This test is supposed to fail by timeout. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 06 6月, 2014 2 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
So we don't incur in the bug we just fixed. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Trinity is a popular linux system call wrapper http://codemonkey.org.uk/projects/trinity/ By implementing it we noticed a number of shortcomings with avocado that have to be fixed in order to provide a smoother developer experience. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 05 6月, 2014 1 次提交
-
-
由 Rudá Moura 提交于
Double free performs a build of doublefree.c and execution, that triggers a double free() function calling, for the same malloc() region. The motivation behind this test is to catch libc errors and log inside Avocado execution (see bug #79). Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
- 31 5月, 2014 1 次提交
-
-
由 Rudá Moura 提交于
Add new test "fiotest" based on Autotest fio test. Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
- 15 5月, 2014 5 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Instead of using self.params.set_default() manually for each default value, allow test writers to set a default_params attribute with default params, and set them at test class init time. This way we keep things even shorter, while allowing avocado tests to be used stand alone. Signed-off-by: NLucas Meneghel Rodrigues <lmr@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>
-
由 Lucas Meneghel Rodrigues 提交于
Tell the multiplex config file we're using floats as the sleep_length value. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Modify sleeptest to pick any params from self.params. Also, introduce a sample multiplex file, sleeptest.mplx, an example of how to write a multiplex file to fulfill matrix defining goals. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 08 5月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
They raise the following exceptions: 1) TestError (failure) 2) TestNAError (skip) 3) TestWarn (failure) The corresponding functional tests for them go in the Travis CI file. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 25 4月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 24 4月, 2014 1 次提交
-
-
由 Rudá Moura 提交于
Improvements for using xUnit with Jenkins (Junit). Now the actual XML result is handled in class XmlResult. Also minor fix (cosmetics) in tests.failtest. Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
- 23 4月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
I went through all python files in avocado code, and some changes were made: * Files entirely written by the current avocado dev team were changed to be GPL v2+ * Files with a significant portion of code derived from autotest remain GPL v2 strict, and original authorship was re-established Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 10 4月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 26 3月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Introduce the job.main() entry point in all avocado test modules. This way all of them can be executed. The functionality depends on having avocado installed system wide, though. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 21 3月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 12 3月, 2014 4 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
synctest is a simple test wrapper for the synctest test suite. It's an example of suite compilation and execution. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
-
由 Lucas Meneghel Rodrigues 提交于
Separate loggers for the entry points and utilities/tests. Make the former log to the console, and the latter, to the log files. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 08 3月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 07 3月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-