diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-10-31 16:40:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-04 12:50:56 +0000 |
commit | b8cabc7ed378c1b34666216ce39d7165f226053f (patch) | |
tree | d5d69d7032de114e051d7bc5f1ba6f1532fbacfb /bitbake/lib/toaster/tests | |
parent | 934c9efa6670f08d9f0b14b496262f372cafab99 (diff) | |
download | poky-b8cabc7ed378c1b34666216ce39d7165f226053f.tar.gz |
bitbake: toaster: add tests/eventreplay/README
Put instructions on how to prepare event log files
and run eventreplay tests.
(Bitbake rev: 0e675547166acc8650498e153bd3482420342c32)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/tests')
-rw-r--r-- | bitbake/lib/toaster/tests/eventreplay/README | 22 |
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 | |||
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. | ||