- 08 1月, 2016 7 次提交
-
-
由 Cleber Rosa 提交于
If contributors choose to send patches to the mailing list, we'll take them. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
So that regular and advanced users (Avocado hackers) know better where to look for specific information. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
That way no uninstall is attempted, and no (failed) installation of an older version crashes the builds. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
-
由 Cleber Rosa 提交于
-
由 Lucas Meneghel Rodrigues 提交于
Sometimes remote servers might have MOTD (message of the day) banners, that will introduce line breaks on the remote output of the `avocado -v` command. Let's use re.MULTILINE and re.findall to solve that. Signed-off-by: NLucas Meneghel Rodrigues <lookkas@gmail.com>
-
由 Lucas Meneghel Rodrigues 提交于
Some debian packages are needy and demand our attention even if we already told apt-get to answer all questions with 'yes'. We need to export DEBIAN_FRONTEND='noninteractive' So that apt-get can be run fully unattended. Let's adjust accordingly, and pass some default dpkg values. Signed-off-by: NLucas Meneghel Rodrigues <lookkas@gmail.com>
-
- 07 1月, 2016 8 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
avocado.tests: Port bonnie from autotest
-
由 Lucas Meneghel Rodrigues 提交于
avocado.tests: Port compilebench from autotest [v2]
-
由 Amador Pahim 提交于
Add new 'compilebench' test based on autotest. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
Add new 'bonnie' test based on autotest. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
selftests/functional/test_basic.py: remove references to old Plugin
-
由 Cleber Rosa 提交于
There are a few leftover references to the old Plugin classes in the functional tests. Let's remove them. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
avocado.core.loader: Append test directory to sys.path [v2]
-
由 Lucas Meneghel Rodrigues 提交于
If a test has local imports (a fairly common use case), we have to append the base test dir to sys.path. Otherwise, we end up having a horrible traceback as a result: Exception loading test Traceback (most recent call last): File "/home/lmr/Code/avocado.lmr/avocado/core/runner.py", line 200, in _run_test instance = loader.load_test(test_factory) File "/home/lmr/Code/avocado.lmr/avocado/core/loader.py", line 262, in load_test test_module = imp.load_module(module_name, f, p, d) File "scylla_longevity.py", line 5, in <module> from sdcm.tester import ScyllaClusterTester ImportError: No module named sdcm.tester Which is clearly not wanted. We had this problem before and now we have a regression. It's time for a functional test to make sure we don't regress again. Signed-off-by: NLucas Meneghel Rodrigues <lookkas@gmail.com> Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 06 1月, 2016 3 次提交
-
-
由 Cleber Rosa 提交于
With the same one that comes from the test documentation. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
-
由 Amador Pahim 提交于
Add new 'stress' test based on autotest. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 05 1月, 2016 4 次提交
-
-
由 Cleber Rosa 提交于
-
由 Cleber Rosa 提交于
-
由 Lukáš Doktor 提交于
RHEL requires epel to be enabled. Let's mention it in the documentation. Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
由 Lukáš Doktor 提交于
Older versions of stevedore does not support `__contains__` method. Use try/except to handle subcommand handling. Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
- 04 1月, 2016 2 次提交
-
-
由 Lukáš Doktor 提交于
Revert "Pseudo terminals: add utility module"
-
由 Cleber Rosa 提交于
It was noticed that the Python standard library provides os.ttyname(), and, while it only returns the Pseudo Terminal file path when given the slave file descriptor, it looks to be sufficient for most, if not all, use cases. This reverts commit 003bfaed. CC: Lukáš Doktor <ldoktor@redhat.com> Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 30 12月, 2015 3 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Pseudo terminals: add utility module
-
由 Cleber Rosa 提交于
-
由 Lucas Meneghel Rodrigues 提交于
On local runs, for non-root users, it's possible to verify the contents of /proc/1/cmdline. Of course, we should do this only if we are on a local run (process.run is passed to get_name_of_init) and we couldn't directly read from /proc/1/exe. After this patch, it's possible to instantiate ServiceManager on local runs made by non-root users. Signed-off-by: NLucas Meneghel Rodrigues <lookkas@gmail.com>
-
- 29 12月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Early state docs and tweaks
-
- 28 12月, 2015 3 次提交
-
-
由 Cleber Rosa 提交于
Based on previous experiences (GDB terminal redirection attempts), it's common for applications that need to allocate a pseudo to have the name of the allocated file. This is, unfortunately, something that the Python standard library doesn't give for free. This simple utility module wraps and extends the Python standard library `pty` module, providing a `openpty` function that, besides allocating the pseudo terminal, also returns its name. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
These signal handlers are only used later in the code, and in a hope to dimish the possible things that can go wrong before the initial test state (AKA early state) is sent to the test runner, let's move their definitions to a later stage. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 24 12月, 2015 2 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 23 12月, 2015 6 次提交
-
-
由 Cleber Rosa 提交于
-
由 Cleber Rosa 提交于
Commit 63077e79 introduced the `make requirements` target. Let's use that on the documentation, since it can cover more scenarios such as Python 2.6 users. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
There has been a lot of file location updates with the plugin architecture changes. Also python-stevedore is also required at build time, because on some arches the selftests are run during the package build. Let's reflect those in the RPM packages. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
-
由 Cleber Rosa 提交于
Commit f415c4d8 introduced this useful feature. Let's document how it can be used. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 22 12月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Plugins Overhaul [v1]
-