aports/community/net-cpp/python-init.patch
Luca Weiss cdee8cba85 community/net-cpp: fix issues with new libcurl
We can also re-enable tests now.

Also increase the timeout to start httpbin from 5 seconds to 10 seconds
because apparently 5 is not enough for s390x on GitLab.

Fixes alpine/aports#13719
2022-06-18 15:46:19 +02:00

14 lines
538 B
Diff

diff --git a/tests/httpbin.h.in b/tests/httpbin.h.in
index 0010068..6a96e66 100644
--- a/tests/httpbin.h.in
+++ b/tests/httpbin.h.in
@@ -45,7 +45,7 @@ struct Instance
core::posix::exec("/usr/bin/python3", {"-c", "from httpbin import app; app.run()"}, {}, core::posix::StandardStream::stdout /*| core::posix::StandardStream::stderr*/)
}
{
- std::this_thread::sleep_for(std::chrono::milliseconds{1000});
+ std::this_thread::sleep_for(std::chrono::milliseconds{10000});
}
~Instance()