| 1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/bin/sh
- # Copyright 2019-2022 Yury Gribov
- #
- # The MIT License (MIT)
- #
- # Use of this source code is governed by MIT license that can be
- # found in the LICENSE.txt file.
- # This test checks that exceptions are successfully propagated
- # through implib wrappers.
- set -eu
- cd $(dirname $0)
- if test -n "${1:-}"; then
- ARCH="$1"
- fi
- . ../common.sh
- export LD_LIBRARY_PATH=.:${LD_LIBRARY_PATH:-}
- $CXX $CFLAGS -shared -fPIC interposed.cpp -o libinterposed.so
- $CXX $CFLAGS main.cpp -L. -linterposed
- $INTERP ./a.out 2>&1 | tee ref.log
- ${PYTHON:-} ../../implib-gen.py -q --target $TARGET --vtables libinterposed.so
- $CXX $CFLAGS -Wno-deprecated main.cpp libinterposed.so.tramp.S libinterposed.so.init.c $LIBS
- $INTERP ./a.out 2>&1 | tee new.log
- if ! diff ref.log new.log; then
- echo "Vtable interception in implibs fails"
- exit 1
- fi
- echo SUCCESS
|