| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| README | H A D | 05-Jun-2025 | 850 | 23 | 15 | |
| __init__.py | H A D | 05-Jun-2025 | 3.1 KiB | 86 | 57 |
README
1# Running eventreplay tests 2 3These tests use event log files produced by bitbake <target> -w <event log file> 4You need to have event log files produced before running this tests. 5 6At the moment of writing this document tests use 2 event log files: zlib.events 7and core-image-minimal.events. They're not provided with the tests due to their 8significant size. 9 10Here is how to produce them: 11 12$ . oe-init-build-env 13$ rm -r tmp sstate-cache 14$ bitbake core-image-minimal -w core-image-minimal.events 15$ rm -rf tmp sstate-cache 16$ bitbake zlib -w zlib.events 17 18After that it should be possible to run eventreplay tests this way: 19 20$ EVENTREPLAY_DIR=./ DJANGO_SETTINGS_MODULE=toastermain.settings_test ../bitbake/lib/toaster/manage.py test -v2 tests.eventreplay 21 22Note that environment variable EVENTREPLAY_DIR should point to the directory with event log files. 23