Files
patchelf/tests/args-from-file.sh
Jörg Thalheim 61fdb6e999 tests: apply suggestions from shellcheck
(cherry picked from commit be4b84635f)
2025-08-12 15:04:30 -04:00

17 lines
571 B
Bash
Executable File

#! /bin/sh -e
SCRATCH=scratch/$(basename "$0" .sh)
rm -rf "${SCRATCH}"
mkdir -p "${SCRATCH}"
cp main "${SCRATCH}"/
SOME_PATH=$(pwd)/${SCRATCH}/some-path
printf "%s" "$SOME_PATH" >> "${SCRATCH}"/add-rpath
../src/patchelf --print-rpath "${SCRATCH}"/main | grep "$SOME_PATH" && exit 1
../src/patchelf --add-rpath @"${SCRATCH}"/add-rpath "${SCRATCH}"/main
../src/patchelf --print-rpath "${SCRATCH}"/main | grep "$SOME_PATH"
# should print error message and fail
../src/patchelf --set-rpath @"${SCRATCH}"/does-not-exist "${SCRATCH}"/main 2>&1 | grep "getting info about"