This file is indexed.

/usr/lib/codeaster/asrun/unittest/datafiles/sleep.comm is in code-aster-run 1.13.1-2.

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
DEBUT(PAR_LOT='NON')

import time

duration = 10.
nstep = int(duration) * 5
delay = duration / nstep
for i in range(nstep):
    aster.affiche('MESSAGE', 'Iteration #%d' % (i + 1))
    time.sleep(delay)

FIN()