This file is indexed.

/usr/src/openvswitch-1.4.0/tests/vconn.at is in openvswitch-datapath-dkms 1.4.0-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
m4_define([TEST_VCONN_CLASS],
  [AT_BANNER([vconn library -- $1 class])
   m4_foreach(
     [testname], 
     [[refuse-connection], 
      [accept-then-close],
      [read-hello],
      [send-plain-hello],
      [send-long-hello],
      [send-echo-hello],
      [send-short-hello],
      [send-invalid-version-hello]],
     [AT_SETUP([$1 vconn - m4_bpatsubst(testname, [-], [ ])])
      m4_if([$1], [ssl], [
        AT_SKIP_IF([test "$HAVE_OPENSSL" = no])
        AT_CHECK([cp $abs_top_builddir/tests/testpki*.pem .])])
      AT_CHECK([test-vconn testname $1], [0], [], [ignore])
      AT_CLEANUP])])

TEST_VCONN_CLASS([unix])
TEST_VCONN_CLASS([tcp])
TEST_VCONN_CLASS([ssl])