Skip to content
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

Add MSYS2 build CI test #6932

Closed
wants to merge 4 commits into from
Closed

Add MSYS2 build CI test #6932

wants to merge 4 commits into from

Conversation

lealem47
Copy link
Contributor

Description

Add MSYS2 build CI github actions test

Checklist

  • added tests
  • updated/added doxygen
  • updated appropriate READMEs
  • Updated manual and documentation

@lealem47 lealem47 self-assigned this Oct 31, 2023
@lealem47 lealem47 force-pushed the msys2 branch 6 times, most recently from ff0c553 to 67b75f1 Compare November 2, 2023 22:49
@lealem47 lealem47 force-pushed the msys2 branch 2 times, most recently from f0692ab to 246438b Compare May 15, 2024 21:29
@@ -7457,7 +7463,7 @@ static THREAD_RETURN WOLFSSL_THREAD test_server_nofail(void* args)
static THREAD_RETURN WOLFSSL_THREAD test_server_loop(void* args)
{
SOCKET_T sockfd;
SOCKET_T clientfd = -1;
SOCKET_T clientfd;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Usually we use SOCKET_INVALID.

@@ -581,6 +581,12 @@ static int testDevId = INVALID_DEVID;
#define HAVE_SSL_MEMIO_TESTS_DEPENDENCIES
#endif

#ifdef USE_WINDOWS_API
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems unnecessary. Either case should be happy with (char*)

@@ -7472,6 +7478,7 @@ static THREAD_RETURN WOLFSSL_THREAD test_server_loop(void* args)
func_args* opts = (func_args*)args;
int loop_count = opts->argc;
int count = 0;
int freeClientfd = 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't be required.

@@ -7638,7 +7646,7 @@ static THREAD_RETURN WOLFSSL_THREAD test_server_loop(void* args)
if (!sharedCtx)
wolfSSL_CTX_free(ctx);

if (clientfd >= 0)
if (freeClientfd)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clientFd != SOCKET_INVALID

@lealem47
Copy link
Contributor Author

Closing this. Being handled in #8367

@lealem47 lealem47 closed this Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants