mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 15:29:50 +00:00
bahamut: lower mainloop delay, and reduce parallelism to make tests less flaky
This commit is contained in:
1
.github/workflows/test-devel.yml
vendored
1
.github/workflows/test-devel.yml
vendored
@ -67,6 +67,7 @@ jobs:
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/Bahamut/
|
||||
patch src/s_user.c < $GITHUB_WORKSPACE/patches/bahamut_localhost.patch
|
||||
patch src/s_bsd.c < $GITHUB_WORKSPACE/patches/bahamut_mainloop.patch
|
||||
echo "#undef THROTTLE_ENABLE" >> include/config.h
|
||||
libtoolize --force
|
||||
aclocal
|
||||
|
1
.github/workflows/test-stable.yml
vendored
1
.github/workflows/test-stable.yml
vendored
@ -67,6 +67,7 @@ jobs:
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/Bahamut/
|
||||
patch src/s_user.c < $GITHUB_WORKSPACE/patches/bahamut_localhost.patch
|
||||
patch src/s_bsd.c < $GITHUB_WORKSPACE/patches/bahamut_mainloop.patch
|
||||
echo "#undef THROTTLE_ENABLE" >> include/config.h
|
||||
libtoolize --force
|
||||
aclocal
|
||||
|
5
Makefile
5
Makefile
@ -122,7 +122,8 @@ bahamut:
|
||||
$(PYTEST) $(PYTEST_ARGS) \
|
||||
--controller=irctest.controllers.bahamut \
|
||||
-m 'not services' \
|
||||
-n 10 \
|
||||
-n 4 \
|
||||
-vv -s \
|
||||
-k '$(BAHAMUT_SELECTORS)'
|
||||
|
||||
bahamut-atheme:
|
||||
@ -130,7 +131,6 @@ bahamut-atheme:
|
||||
--controller=irctest.controllers.bahamut \
|
||||
--services-controller=irctest.controllers.atheme_services \
|
||||
-m 'services' \
|
||||
-n 10 \
|
||||
-k '$(BAHAMUT_SELECTORS)'
|
||||
|
||||
bahamut-anope:
|
||||
@ -138,7 +138,6 @@ bahamut-anope:
|
||||
--controller=irctest.controllers.bahamut \
|
||||
--services-controller=irctest.controllers.anope_services \
|
||||
-m 'services' \
|
||||
-n 10 \
|
||||
-k '$(BAHAMUT_SELECTORS)'
|
||||
|
||||
charybdis:
|
||||
|
15
patches/bahamut_mainloop.patch
Normal file
15
patches/bahamut_mainloop.patch
Normal file
@ -0,0 +1,15 @@
|
||||
Lower Bahamut's delay between processing incoming commands
|
||||
|
||||
diff --git a/src/s_bsd.c b/src/s_bsd.c
|
||||
index fcc1d02..951fd8c 100644
|
||||
--- a/src/s_bsd.c
|
||||
+++ b/src/s_bsd.c
|
||||
@@ -1458,7 +1458,7 @@ int do_client_queue(aClient *cptr)
|
||||
int dolen = 0, done;
|
||||
|
||||
while (SBufLength(&cptr->recvQ) && !NoNewLine(cptr) &&
|
||||
- ((cptr->status < STAT_UNKNOWN) || (cptr->since - timeofday < 10) ||
|
||||
+ ((cptr->status < STAT_UNKNOWN) || (cptr->since - timeofday < 20) ||
|
||||
IsNegoServer(cptr)))
|
||||
{
|
||||
/* If it's become registered as a server, just parse the whole block */
|
@ -105,6 +105,7 @@ software:
|
||||
build_script: |
|
||||
cd $GITHUB_WORKSPACE/Bahamut/
|
||||
patch src/s_user.c < $GITHUB_WORKSPACE/patches/bahamut_localhost.patch
|
||||
patch src/s_bsd.c < $GITHUB_WORKSPACE/patches/bahamut_mainloop.patch
|
||||
echo "#undef THROTTLE_ENABLE" >> include/config.h
|
||||
libtoolize --force
|
||||
aclocal
|
||||
|
Reference in New Issue
Block a user