1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-21 09:57:18 +03:00
mold/test/mold-wrapper.sh
Rui Ueyama 271c9151f4 Disable tests for mold-wrapper if ASAN is enabled
ASAN doens't work well if other libraries are LD_PRELOAD'ed.
2021-07-20 13:32:02 +09:00

79 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
set -e
mold=$1
cd $(dirname $0)
echo -n "Testing $(basename -s .sh $0) ... "
t=$(pwd)/tmp/$(basename -s .sh $0)
mkdir -p $t
ldd $mold-wrapper.so | grep -q libasan && { echo skipped; exit; }
cat <<'EOF' > $t/a.sh
#!/bin/bash
echo "$0" "$@"
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")) {
execvpe("/usr/bin/ld", (char *[]){"/usr/bin/ld", "execvpe", (char *)0},
environ);
perror("execl");
return 1;
}
fprintf(stderr, "unreachable: %s\n", argv[1]);
return 1;
}
EOF
LD_PRELOAD=$mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execl | grep -q 'a.sh execl'
LD_PRELOAD=$mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execlp | grep -q 'a.sh execlp'
LD_PRELOAD=$mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execle | grep -q 'a.sh execle'
LD_PRELOAD=$mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execv | grep -q 'a.sh execv'
LD_PRELOAD=$mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execvp | grep -q 'a.sh execvp'
LD_PRELOAD=$mold-wrapper.so MOLD_PATH=$t/a.sh $t/exe execvpe | grep -q 'a.sh execvpe'
echo OK