mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-06 21:06:40 +02:00
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
14 lines
538 B
Diff
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()
|