This file is indexed.

/usr/lib/x86_64-linux-gnu/installed-tests/dbus-python/python2.7/test/run-test.sh is in python-dbus-tests 1.2.4-1+b1.

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
 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
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#! /bin/bash

# Copyright (C) 2006 Red Hat Inc. <http://www.redhat.com/>
# Copyright (C) 2006-2007 Collabora Ltd. <http://www.collabora.co.uk/>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use, copy,
# modify, merge, publish, distribute, sublicense, and/or sell copies
# of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

set -e

failed=
skipped=

echo "DBUS_TOP_SRCDIR=$DBUS_TOP_SRCDIR"
echo "DBUS_TOP_BUILDDIR=$DBUS_TOP_BUILDDIR"
echo "PYTHONPATH=$PYTHONPATH"
echo "PYTHON=${PYTHON:=python}"

if ! [ -d "$DBUS_TEST_TMPDIR" ]; then
  DBUS_TEST_TMPDIR="$(mktemp -d)"
  if ! [ -d "$DBUS_TEST_TMPDIR" ]; then
    echo "failed to create temporary directory (install mktemp?)" >&2
    exit 1
  fi
fi

if ! "$PYTHON" -c 'from gi.repository import GLib'; then
  echo "could not import python-gi"
  exit 77
fi

dbus-monitor > "$DBUS_TEST_TMPDIR"/monitor.log &

#echo "running the examples"

#$PYTHON "$DBUS_TOP_SRCDIR"/examples/example-service.py &
#$PYTHON "$DBUS_TOP_SRCDIR"/examples/example-signal-emitter.py &
#$PYTHON "$DBUS_TOP_SRCDIR"/examples/list-system-services.py --session ||
#  die "list-system-services.py --session failed!"
#$PYTHON "$DBUS_TOP_SRCDIR"/examples/example-async-client.py ||
#  die "example-async-client failed!"
#$PYTHON "$DBUS_TOP_SRCDIR"/examples/example-client.py --exit-service ||
#  die "example-client failed!"
#$PYTHON "$DBUS_TOP_SRCDIR"/examples/example-signal-recipient.py --exit-service ||
#  die "example-signal-recipient failed!"

echo "running cross-test (for better diagnostics use mjj29's dbus-test)"

$PYTHON "$DBUS_TOP_SRCDIR"/test/cross-test-server.py > "$DBUS_TEST_TMPDIR"/cross-server.log &
cross_test_server_pid="$!"

$PYTHON "$DBUS_TOP_SRCDIR"/test/wait-for-name.py org.freedesktop.DBus.Binding.TestServer

e=0
$PYTHON "$DBUS_TOP_SRCDIR"/test/cross-test-client.py > "$DBUS_TEST_TMPDIR"/cross-client.log || e=$?
echo "test-client exit status: $e"

if test "$e" = 77; then
  echo "cross-test-client exited $e, marking as skipped"
  skipped=yes
elif grep . "$DBUS_TEST_TMPDIR"/cross-client.log >/dev/null; then
  echo "OK, cross-test-client produced some output"
else
  echo "cross-test-client produced no output" >&2
  failed=yes
fi

if test "$e" = 77; then
  echo "test-client exited $e, marking as skipped"
  skipped=yes
elif grep . "$DBUS_TEST_TMPDIR"/cross-server.log >/dev/null; then
  echo "OK, cross-test-server produced some output"
else
  echo "cross-test-server produced no output" >&2
  failed=yes
fi

if grep fail "$DBUS_TEST_TMPDIR"/cross-client.log; then
  failed=yes
else
  echo "  - cross-test client reported no failures"
fi

if grep untested "$DBUS_TEST_TMPDIR"/cross-server.log; then
  failed=yes
else
  echo "  - cross-test server reported no untested functions"
fi

echo "waiting for cross-test server to exit"
if wait "$cross_test_server_pid"; then
  echo "cross-test server: exit status 0"
else
  echo "cross-test server: exit status $?"
  failed=yes
fi

echo "==== client log ===="
cat "$DBUS_TEST_TMPDIR"/cross-client.log
echo "==== end ===="

echo "==== server log ===="
cat "$DBUS_TEST_TMPDIR"/cross-server.log
echo "==== end ===="

rm -f "$DBUS_TEST_TMPDIR"/test-service.log
rm -f "$DBUS_TEST_TMPDIR"/cross-client.log
rm -f "$DBUS_TEST_TMPDIR"/cross-server.log
rm -f "$DBUS_TEST_TMPDIR"/monitor.log

if test -n "$skipped"; then
  exit 77
fi
if test -n "$failed"; then
  exit 1
fi
exit 0