summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/tests/eventreplay/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/tests/eventreplay/README b/bitbake/lib/toaster/tests/eventreplay/README
new file mode 100644
index 0000000000..8c5bb64323
--- /dev/null
+++ b/bitbake/lib/toaster/tests/eventreplay/README
@@ -0,0 +1,22 @@
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.