This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_util.aug is in augeas-lenses 1.2.0-0ubuntu1.3.

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
19
20
21
22
23
24
module Test_Util =

test Util.empty_c_style get "/* */\n" =
  {  }

test Util.comment_multiline get "/* comment */\n" =
  { "#mcomment"
    { "1" = "comment" }
  }

test Util.comment_multiline get "/*\ncomment\n*/\n" =
  { "#mcomment"
    { "1" = "comment" }
  }

test Util.comment_multiline get "/**
 * Multi line comment
 *
 */\n" =
  { "#mcomment"
    { "1" = "*" }
    { "2" = "* Multi line comment" }
    { "3" = "*" }
  }