This file is indexed.

/usr/lib/cmake/paraview/CTestCustom.cmake.in is in paraview-dev 4.0.1-1ubuntu1.

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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#------------------------------------------------------------------------------
# Inherit VTK's exclusions. We don't have to redefine them in this file anymore.
include("@VTK_BINARY_DIR@/CTestCustom.cmake")

#------------------------------------------------------------------------------
# Regular expression for warning exception during build process
set (CTEST_CUSTOM_WARNING_EXCEPTION
  ${CTEST_CUSTOM_WARNING_EXCEPTION}

  #ignore protobuf related warnings.
  "ThirdParty.protobuf/"
  "protobuf"
  "vtkPVMessage"
  "vtkSMMessage"
  "google::protobuf::Message"

  #ignore warnings coming from QT headers.
  "qtcore"
  "qthelp"
  "QtCore"
  "QtHelp"

  #ignore warnings generated by Qt plugin infrastructure
  "qt_plugin_instance_"

  "vtk[^\\.]+ClientServer.cxx"

  # ignore VRPN warnings
  ".*vrpn.*"

  # ignore warnings from openmpi.
  ".*openmpi.*"

  # ignore warnings about unsafe str* functions.
  "_CRT_SECURE_NO_WARNINGS"

  # ignore warnings from documentation generation tools.
  "Warning.*Skipping it."
  "warning.*Skipping it."

  # ignore external code issue
  ".*FreeType.*CxxTests.*"

  # Ignore invalid warning
  ".*vtksmrenderviewproxy.cxx.*unreachable code"
  ".*pqComponentsInit.cxx.*conditional expression is constant"
  ".*pqCoreInit.cxx.*conditional expression is constant"

  # ignore warnings from old plugins
  ".*H5Part.*"
  ".*AnalyzeNIfTIReaderWriter.*"

  # ignore method call with return value unused
  "declared with attribute warn_unused_result"
  "warning: ignoring return value"

  # ignore qt library warnings
  ".*qttest.*testlib.*"

  # MPI 2 deprecation warning
  ".*MPI_Errhandler_create.*MPI_Comm_create_errhandler.*"
  ".*MPI_Errhandler_set.*MPI_Comm_set_errhandler.*"

  # Ignore warning on Windows for static builds complaining that the archive has
  # no public symbols and hence will be inaccessible.
  "warning LNK4221"

  # Ignore clang warning when taking c++ file in c mode has they have .c extension
  "clang.*warning.*treating.*input as.*when in.*mode, this behavior is deprecated"

  # Ignore empty link error
  "/usr/bin/ld.*warning.*init_array section has zero size"

  # Ignore Mac link error about read_only_relocs
  "ld.*warning.*read_only_relocs cannot be used with x86_64"

  # exclude warning from MantaView  plugin
  "MantaView.VTK"
  "manta"

  # exclude warnings from mpi4py
  ".*mpi4py.*"

  # exclude Nektar plugin warnings about overloaded virtual methods
  "Nektar/include*overloaded-virtual"
)

#------------------------------------------------------------------------------
# Regular expression for excluding files from coverage testing
set (CTEST_CUSTOM_COVERAGE_EXCLUDE
  ${CTEST_CUSTOM_COVERAGE_EXCLUDE}
  ".*/VTK/.*"
  "vtk[^\\.]+ClientServer.cxx"
  "vtk[^\\.]+Python.cxx"
  "ui_[^\\.]+.h"
  "moc_[^\\.]+.h"
  "vtkprotobuf"
)