This file is indexed.

/usr/share/pyshared/bike/parsing/testall.py is in bicyclerepair 0.9-6.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
import setpath

import unittest

#import all the tests
from test_load import *
from test_newstuff import *
from test_parserutils import *
from test_fastparser import *
from test_fastparserast import *

if __name__ == "__main__":
    from bike import logging
    logging.init()
    log = logging.getLogger("bike")
    log.setLevel(logging.WARN)
    unittest.main()