WIP debugging failures on mac and cygwin...

This commit is contained in:
Alexey Sokolov
2025-04-28 00:26:02 +01:00
parent 1ac3571c60
commit 81e7fd69de
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -243,6 +243,7 @@ TEST_F(ZNCTest, ModperlUnixSocket) {
auto client = LoginClient();
client.Write("znc loadmod modperl");
client.Write("znc loadmod socktest");
sleep(1);
client.Write("PRIVMSG *socktest :foo");
client.ReadUntil("received 4 bytes");
}
@@ -267,6 +268,7 @@ TEST_F(ZNCTest, ModpythonVCString) {
auto client = LoginClient();
client.Write("znc loadmod modpython");
client.Write("znc loadmod test");
sleep(1);
client.Write("PRIVMSG *test :foo");
client.ReadUntil("'*test', 'foo'");
}