1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 16:48:04 +03:00
mold/test/elf/mold-wrapper.sh

95 lines
2.4 KiB
Bash
Executable File

#!/bin/bash
export LC_ALL=C
set -e
CC="${CC:-cc}"
CXX="${CXX:-c++}"
GCC="${GCC:-gcc}"
GXX="${GXX:-g++}"
OBJDUMP="${OBJDUMP:-objdump}"
MACHINE="${MACHINE:-$(uname -m)}"
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
cd "$(dirname "$0")"/../..
t=out/test/elf/$testname
mkdir -p $t
[ "$CC" = cc ] || { echo skipped; exit; }
ldd mold-wrapper.so | grep -q libasan && { echo skipped; exit; }
nm mold | grep -q '__[at]san_init' && { echo skipped; exit; }
cat <<'EOF' > $t/a.sh
#!/bin/bash
echo "$0" "$@" $FOO
EOF
chmod 755 $t/a.sh
cat <<'EOF' | $CC -xc -o $t/exe -
#define _GNU_SOURCE 1
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
extern char **environ;
int main(int argc, char **argv) {
if (!strcmp(argv[1], "execl")) {
execl("/usr/bin/ld", "/usr/bin/ld", "execl", (char *)0);
perror("execl");
return 1;
}
if (!strcmp(argv[1], "execlp")) {
execlp("/usr/bin/ld", "/usr/bin/ld", "execlp", (char *)0);
perror("execl");
return 1;
}
if (!strcmp(argv[1], "execle")) {
execle("/usr/bin/ld", "/usr/bin/ld", "execle", (char *)0, environ);
perror("execl");
return 1;
}
if (!strcmp(argv[1], "execv")) {
execv("/usr/bin/ld", (char *[]){"/usr/bin/ld", "execv", (char *)0});
perror("execl");
return 1;
}
if (!strcmp(argv[1], "execvp")) {
execvp("/usr/bin/ld", (char *[]){"/usr/bin/ld", "execvp", (char *)0});
perror("execl");
return 1;
}
if (!strcmp(argv[1], "execvpe")) {
char *env[] = {"FOO=bar", NULL};
execvpe("/usr/bin/ld", (char *[]){"/usr/bin/ld", "execvpe", (char *)0}, env);
perror("execl");
return 1;
}
fprintf(stderr, "unreachable: %s\n", argv[1]);
return 1;
}
EOF
LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execl | grep -q 'a.sh execl'
LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execlp | grep -q 'a.sh execlp'
LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execle | grep -q 'a.sh execle'
LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execv | grep -q 'a.sh execv'
LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execvp | grep -q 'a.sh execvp'
LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execvpe | grep -q 'a.sh execvpe bar'
valgrind="$(which valgrind 2> /dev/null; true)"
if [ -n "$valgrind" ]; then
LD_PRELOAD=`pwd`/mold-wrapper.so MOLD_PATH=$t/a.sh "$valgrind" -q $t/exe execl | grep -q 'a.sh execl'
fi
echo OK