diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2018-10-07 22:25:53 +0200 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2018-10-07 22:25:53 +0200 |
commit | b6bcb6e689c3d146fe8f53b94b15de07287d39e6 (patch) | |
tree | eb19338c1a822cb56492474fb10e8dbb1dc1653c /tests/runtests.pl | |
parent | c10a424429f068beda30726e19454a39ebb62c45 (diff) | |
download | curl-b6bcb6e689c3d146fe8f53b94b15de07287d39e6.tar.gz |
runtests: skip ld_preload tests on macOS
The LD_PRELOAD functionality doesn't exist on macOS, so skip any tests
requiring it.
Fixes #2394
Closes #3106
Reported-by: Github user @jakirkham
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 4345df2d0..5dce33042 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2682,7 +2682,7 @@ sub checksystem { $curl =~ s/^(.*)(libcurl.*)/$1/g; $libcurl = $2; - if($curl =~ /linux|bsd|solaris|darwin/) { + if($curl =~ /linux|bsd|solaris/) { $has_ldpreload = 1; } if($curl =~ /win32|Windows|mingw(32|64)/) { |