about summary refs log tree commit diff
path: root/elf/tst-rtld-dash-dash.sh
blob: 2bc1f8559863821ce44ba9d0a2d4980fc2f4e35a (plain) (blame)
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
#!/bin/sh
# Test for the '--' option in ld.so.
# Copyright (C) 2024 Free Software Foundation, Inc.
# This file is part of the GNU C Library.

# The GNU C Library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.

# The GNU C Library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public
# License along with the GNU C Library; if not, see
# <https://www.gnu.org/licenses/>.

export LC_ALL=C

# --inhibit-cache to suppress "No such file or directory" message when
# /etc/ld.so.cache does not exist.
rtld="$1 --inhibit-cache"
tmp_out="$(mktemp)"

$rtld -- --program-does-not-exist 2>"$tmp_out"
status=$?
echo "$rtld exit status: $status"
echo "output (with expected error):"
cat "$tmp_out"

if test $status -eq 127 \
	&& grep -q "^--program-does-not-exist: error while loading shared libraries: --program-does-not-exist: cannot open shared object file$" "$tmp_out" \
	&& test "$(wc -l < "$tmp_out")" -eq 1 ; then
    status=0
else
    status=1
fi
rm "$tmp_out"
exit $status