+ Bill On 02/22/2016 06:52 PM, Aníbal Limón wrote: > I forget to comment that the changes can be also found in: > > http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=alimon/toaster_tests_squash > > Cheers, > alimon > > > On 02/22/2016 06:51 PM, Aníbal Limón wrote: >> This set of changes refactor/improve the current test suite now it can be >> parameterized from command line. >> >> The main goal for this set of patches are for integrate the toaster >> test suite into AB. The AB part is already on master. [1] If this patchset >> is merged the way for run Toaster test suite will change for use it read >> README in this patchset. >> >> Futher work are related to improve/fix the current test suite also i added >> a TODO list. >> >> [1] http://git.yoctoproject.org/cgit/cgit.cgi/yocto-autobuilder/commit/?id=4ad04739d7414046775be84eeb2553d12acf94ef >> >> Aníbal Limón (8): >> toaster/tests: Reorder/move current test code. >> toaster/tests: Add __init__.py and base.py. >> toaster/tests: Improve ui.py module. >> toaster/tests: Adds setup test case. >> toaster/tests: Add helpers.py module. >> toaster-test: Refactor and imporvements. >> toaster/tests: Add README, TODO and requeriments. >> toaster/tests: Adds Copyright information. >> >> bin/toaster-test | 238 ++ >> .../contrib/tts/toasteruitest/run_toastertests.py | 155 -- >> .../tts/toasteruitest/toaster_automation_test.py | 2376 ------------------- >> .../contrib/tts/toasteruitest/toaster_test.cfg | 25 - >> lib/toaster/tests/README | 64 + >> lib/toaster/tests/TODO | 13 + >> lib/toaster/tests/__init__.py | 0 >> lib/toaster/tests/base.py | 28 + >> lib/toaster/tests/helpers.py | 192 ++ >> lib/toaster/tests/setup.py | 94 + >> lib/toaster/tests/toaster_test.cfg | 25 + >> lib/toaster/tests/ui.py | 2379 ++++++++++++++++++++ >> toaster-tests-requirements.txt | 5 + >> 13 files changed, 3038 insertions(+), 2556 deletions(-) >> create mode 100755 bin/toaster-test >> delete mode 100755 lib/toaster/contrib/tts/toasteruitest/run_toastertests.py >> delete mode 100755 lib/toaster/contrib/tts/toasteruitest/toaster_automation_test.py >> delete mode 100644 lib/toaster/contrib/tts/toasteruitest/toaster_test.cfg >> create mode 100644 lib/toaster/tests/README >> create mode 100644 lib/toaster/tests/TODO >> create mode 100644 lib/toaster/tests/__init__.py >> create mode 100644 lib/toaster/tests/base.py >> create mode 100755 lib/toaster/tests/helpers.py >> create mode 100644 lib/toaster/tests/setup.py >> create mode 100644 lib/toaster/tests/toaster_test.cfg >> create mode 100644 lib/toaster/tests/ui.py >> create mode 100644 toaster-tests-requirements.txt >> >