Update the changelog
[opencv] / tests / python / highgui / seek_time_bmp32.py
1 #! /usr/bin/env python
2
3 """
4 This script checks HighGUI's time seeking functionality
5 on an .avi file containing uncompressed 32bit Bitmap frames.
6 """
7
8 # name if this test and it's requirements
9 TESTNAME = "seek_time_bmp32"
10 REQUIRED = []
11 ERRORS=[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]
12
13 # needed for sys.exit(int), .works file handling and check routine
14 import sys
15 import works
16 import seek_test
17
18 # check requirements and delete old flag file, if it exists
19 if not works.check_files(REQUIRED,TESTNAME):
20         sys.exit(77)
21
22 # name of file we check here
23 FILENAME='bmp32.avi'
24
25 # run check routine
26 result=seek_test.seek_time_ok(FILENAME,ERRORS)
27
28 # create flag file for following tests
29 works.set_file(TESTNAME)
30
31  # return result of test routine
32 sys.exit(result)