Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libdvbpsi
Commits
8f5037d4
Commit
8f5037d4
authored
Jul 19, 2015
by
Daniel Kamil Kozar
Committed by
Jean-Paul Saman
Jan 12, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add tests for the time shifted event descriptor
Signed-off-by:
Jean-Paul Saman
<
jpsaman@videolan.org
>
parent
2175557f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
misc/dr.xml
misc/dr.xml
+5
-0
misc/test_dr.c
misc/test_dr.c
+32
-0
No files found.
misc/dr.xml
View file @
8f5037d4
...
...
@@ -315,4 +315,9 @@
<array
name=
"i_event_name"
len_name=
"i_event_name_length"
min_size=
"0"
max_size=
"124"
/>
</descriptor>
<descriptor
name=
"time shifted event"
sname=
"tshifted_ev"
fname=
"TimeShiftedEvent"
>
<integer
name=
"i_ref_service_id"
bitcount=
"16"
default=
"0"
/>
<integer
name=
"i_ref_event_id"
bitcount=
"16"
default=
"0"
/>
</descriptor>
</dr>
misc/test_dr.c
View file @
8f5037d4
...
...
@@ -2029,6 +2029,37 @@ static int main_short_event_2(void)
return
i_err
;
}
/* time shifted event */
static
int
main_tshifted_ev_
(
void
)
{
BOZO_VARS
(
tshifted_ev
);
BOZO_START
(
time
shifted
event
);
/* check i_ref_service_id */
BOZO_init_integer
(
i_ref_service_id
,
0
);
BOZO_init_integer
(
i_ref_event_id
,
0
);
BOZO_begin_integer
(
i_ref_service_id
,
16
)
BOZO_DOJOB
(
TimeShiftedEvent
);
BOZO_check_integer
(
i_ref_service_id
,
16
)
BOZO_CLEAN
();
BOZO_end_integer
(
i_ref_service_id
,
16
)
/* check i_ref_event_id */
BOZO_init_integer
(
i_ref_service_id
,
0
);
BOZO_init_integer
(
i_ref_event_id
,
0
);
BOZO_begin_integer
(
i_ref_event_id
,
16
)
BOZO_DOJOB
(
TimeShiftedEvent
);
BOZO_check_integer
(
i_ref_event_id
,
16
)
BOZO_CLEAN
();
BOZO_end_integer
(
i_ref_event_id
,
16
)
BOZO_END
(
time
shifted
event
);
return
i_err
;
}
/* main function */
int
main
(
void
)
...
...
@@ -2076,6 +2107,7 @@ int main(void)
i_err
|=
main_short_event_0
();
i_err
|=
main_short_event_1
();
i_err
|=
main_short_event_2
();
i_err
|=
main_tshifted_ev_
();
if
(
i_err
)
fprintf
(
stderr
,
"At least one test has FAILED !!!
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment