Changes since v3: - Make sure config_file is initialised - Add a README file to explain how to run the tests
Michael Wood (6): toaster: Remove DATABASE_URL being passed around as an environment var toaster: runbuilds move the execution sequence out of the poll loop toaster: Add a specific test settings file toaster: tests Add a BuildTest helper class toaster: tests build Add a test for a build of core-image-minimal toaster: tests builds Add SSTATE_MISS as a valid condition for tc=833 bitbake/bin/toaster | 2 - bitbake/lib/bb/ui/buildinfohelper.py | 20 +- .../bldcontrol/management/commands/runbuilds.py | 30 +- bitbake/lib/toaster/tests/builds/README | 14 + bitbake/lib/toaster/tests/builds/__init__.py | 0 bitbake/lib/toaster/tests/builds/buildtest.py | 134 +++++++ .../toaster/tests/builds/test_core_image_min.py | 396 +++++++++++++++++++++ .../toastermain/management/commands/get-dburl.py | 9 - bitbake/lib/toaster/toastermain/settings-test.py | 41 +++ bitbake/lib/toaster/toastermain/settings.py | 67 +--- 10 files changed, 621 insertions(+), 92 deletions(-) create mode 100644 bitbake/lib/toaster/tests/builds/README create mode 100644 bitbake/lib/toaster/tests/builds/__init__.py create mode 100644 bitbake/lib/toaster/tests/builds/buildtest.py create mode 100644 bitbake/lib/toaster/tests/builds/test_core_image_min.py delete mode 100644 bitbake/lib/toaster/toastermain/management/commands/get-dburl.py create mode 100644 bitbake/lib/toaster/toastermain/settings-test.py -- 2.7.4 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
