mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Patch InspIRCd to make tests run faster
This commit is contained in:
1
.github/workflows/inspircd.yml
vendored
1
.github/workflows/inspircd.yml
vendored
@ -41,6 +41,7 @@ jobs:
|
|||||||
- name: Build InspIRCd
|
- name: Build InspIRCd
|
||||||
run: |
|
run: |
|
||||||
cd $GITHUB_WORKSPACE/inspircd/
|
cd $GITHUB_WORKSPACE/inspircd/
|
||||||
|
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
||||||
./configure --prefix=$HOME/.local/ --development
|
./configure --prefix=$HOME/.local/ --development
|
||||||
make -j 4
|
make -j 4
|
||||||
make install
|
make install
|
||||||
|
@ -97,6 +97,10 @@ To run (server) tests on InspIRCd:
|
|||||||
cd /tmp/
|
cd /tmp/
|
||||||
git clone https://github.com/inspircd/inspircd.git
|
git clone https://github.com/inspircd/inspircd.git
|
||||||
cd inspircd
|
cd inspircd
|
||||||
|
|
||||||
|
# optional, makes tests run considerably faster
|
||||||
|
patch src/inspircd.cpp < ../irctest/inspircd_mainloop.patch
|
||||||
|
|
||||||
./configure --prefix=$HOME/.local/ --development
|
./configure --prefix=$HOME/.local/ --development
|
||||||
make -j 4
|
make -j 4
|
||||||
make install
|
make install
|
||||||
|
25
inspircd_mainloop.patch
Normal file
25
inspircd_mainloop.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
When a client registers (ie. sends USER+NICK), InspIRCd does not
|
||||||
|
immediately answers with 001. Instead it waits for the next iteration
|
||||||
|
of the main loop to call `DoBackgroundUserStuff`.
|
||||||
|
|
||||||
|
However, this main loop executes only once a second. This is usually
|
||||||
|
fine, but makes irctest considerably slower, as irctest uses hundreds
|
||||||
|
of very short-lived connections.
|
||||||
|
|
||||||
|
This patch removes the frequency limitation of the main loop to make
|
||||||
|
InspIRCd more responsive.
|
||||||
|
|
||||||
|
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
|
||||||
|
index 5760e631b..1da0285fb 100644
|
||||||
|
--- a/src/inspircd.cpp
|
||||||
|
+++ b/src/inspircd.cpp
|
||||||
|
@@ -680,7 +680,7 @@ void InspIRCd::Run()
|
||||||
|
* timing using this event, so we dont have to
|
||||||
|
* time this exactly).
|
||||||
|
*/
|
||||||
|
- if (TIME.tv_sec != OLDTIME)
|
||||||
|
+ if (true)
|
||||||
|
{
|
||||||
|
CollectStats();
|
||||||
|
CheckTimeSkip(OLDTIME, TIME.tv_sec);
|
||||||
|
|
Reference in New Issue
Block a user