This file is indexed.

/usr/bin/testase is in python-ase 3.6.0.2515-1.

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

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/python

from optparse import OptionParser

description = """Run ASE test suite.  ***WARNING***: This will leave a
large number of files in current working directory, so be sure to do
it in a new directory!"""

p = OptionParser(usage='%prog [OPTION]', description=description)
p.add_option('--no-display', action='store_true',
             help='do not open graphical windows')

opts, args = p.parse_args()
if len(args) != 0:
    raise p.error('Unexpected arguments: %s' % args)

from ase.test import test
test(2, display=not opts.no_display)