Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1 | # Running eventreplay tests |
| 2 | |
| 3 | These tests use event log files produced by bitbake <target> -w <event log file> |
| 4 | You need to have event log files produced before running this tests. |
| 5 | |
| 6 | At the moment of writing this document tests use 2 event log files: zlib.events |
| 7 | and core-image-minimal.events. They're not provided with the tests due to their |
| 8 | significant size. |
| 9 | |
| 10 | Here 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 | |
| 18 | After 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 | |
| 22 | Note that environment variable EVENTREPLAY_DIR should point to the directory with event log files. |