-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
*BSD fixes #3810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
*BSD fixes #3810
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,11 +30,21 @@ then | |
| else | ||
| UT_FLAGS+=" -K vcan_socket" | ||
| fi | ||
| elif [[ "$OSTYPE" = "darwin"* ]] || [ "$TRAVIS_OS_NAME" = "osx" ] | ||
| elif [[ "$OSTYPE" = "darwin"* ]] || [ "$TRAVIS_OS_NAME" = "osx" ] || [[ "$OSTYPE" = "FreeBSD" ]] || [[ "$OSTYPE" = *"bsd"* ]] | ||
| then | ||
| OSTOX="bsd" | ||
| # Travis CI in macOS 10.13+ can't load kexts. Need this for tuntaposx. | ||
| UT_FLAGS+=" -K tun -K tap" | ||
| if [[ "$OSTYPE" = "openbsd"* ]] | ||
| then | ||
| # Note: LibreSSL 3.6.* does not support X25519 according to | ||
| # the cryptogaphy module source code | ||
| UT_FLAGS+=" -K libressl" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that in UTscapy, tags are expected to indicate what the test works on rather that what it doesn't work on :/
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To be, these flags are used to tag
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Your call. |
||
| fi | ||
| if [[ "$OSTYPE" = "netbsd" ]] | ||
| then | ||
| UT_FLAGS+=" -K not_netbsd" | ||
| fi | ||
| fi | ||
|
|
||
| # pypy | ||
|
|
@@ -82,7 +92,7 @@ then | |
| fi | ||
|
|
||
| # Configure OpenSSL | ||
| export OPENSSL_CONF=$(python `dirname $BASH_SOURCE`/openssl.py) | ||
| export OPENSSL_CONF=$($PYTHON `dirname $BASH_SOURCE`/openssl.py) | ||
|
|
||
| # Dump vars (the others were already dumped in install.sh) | ||
| echo UT_FLAGS=$UT_FLAGS | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.