blob: 8bea69bca98513b02ed74a14156c33e3afbcbd04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
Litmus is an automated testing tool for tizen arm devices.
Prerequisite
---------------------
Litmus uses sdb to communicate with device.
sdb is not released on download.tizen.org/tools but you can find it from sdk.
Install sdb from tizen sdk or download binary from below url.
32bit:
http://download.tizen.org/sdk/tizenstudio/official/binary/sdb_2.2.89_ubuntu-32.zip
64bit:
http://download.tizen.org/sdk/tizenstudio/official/binary/sdb_2.2.89_ubuntu-64.zip
Unzip this package and copy sdb binary to /usr/bin
Buliding & installing
---------------------
1. Clone this project
$ git clone https://github.com/dhs-shine/litmus
1. Build a deb package with debuild
$ cd litmus
$ debuild
2. Install the deb package using dpkg
$ cd ..
$ sudo dpkg -i litmus_0.3.1-1_amd64.deb
Getting started
---------------
1. Create a litmus project:
$ litmus mk <new_project_name>
2. Modify <project_path>/userscript.py and <project_path>/conf.yaml
3. Run the litmus project
$ litmus run <new_project_name>
Please refer to litmus wiki for more details.
https://github.com/dhs-shine/litmus/wiki
https://wiki.tizen.org/wiki/Litmus
|