forked from gabrielcsapo/lcov-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb schema.txt
52 lines (48 loc) · 1.08 KB
/
db schema.txt
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
project
-------
- gid: u64
- typ: gitlab, github, etc (string) NOT YET
- rep: gabriel-araujjo/coverage-example-c
report
------
- gid: u64
- pid: project_id
- com: commit hash
- bra: symbolic name of commit
- rat: run at (timestamp)
- ci: enum(
travis-ci,
drone,
jenkins,
circleci,
codeship,
wercker,
gitlab-ci,
appveyor,
surf
)
- job: job identifier
- prq: pull request or merge request id
- bct: total block count in report
- bex: total block executed in report
file
----
- gid: u64
- rid: report id
- pat: relative path (ex. example.c, main.cc, src/main.cc)
line_cov
--------
- fid: file id
- lno: line number (starts with zero)
- hit: number of times the line was executed
- bct: branch count
- bex: branches executed
func_cov
--------
- fid: file id
- sln: line where function starts (starts with 0)
- eln: line where function ends (starts with 0)
- fna: function name or demangled_name
- hit: execution count (how many times the function was executed)
- bct: numbers of blocks
- bex: how many blocks were executed