penguwin has quit [Quit: Ping timeout (120 seconds)]
penguwin has joined #ocaml
<vsiles>
thanks !
dborisog has joined #ocaml
nullcone has quit [Quit: Connection closed for inactivity]
dckc has quit [Ping timeout: 260 seconds]
dckc has joined #ocaml
waleee-cl has joined #ocaml
rwmjones has quit [Quit: ZNC - 1.6.0 - http://znc.in]
rwmjones has joined #ocaml
dhil has joined #ocaml
nicoo has quit [Remote host closed the connection]
ArthurStrong has joined #ocaml
nicoo has joined #ocaml
nicoo has quit [Remote host closed the connection]
nicoo has joined #ocaml
jbrown has joined #ocaml
narimiran has quit [Ping timeout: 264 seconds]
narimiran has joined #ocaml
olle_ has quit [Ping timeout: 246 seconds]
drdee has joined #ocaml
inkbottle has joined #ocaml
zebrag has quit [Ping timeout: 264 seconds]
dhil has quit [Quit: Leaving]
rockethead has joined #ocaml
kleisli has joined #ocaml
dborisog has quit [Ping timeout: 260 seconds]
jbrown has quit [Ping timeout: 272 seconds]
copy has joined #ocaml
jbrown has joined #ocaml
rockethead has quit [Ping timeout: 246 seconds]
Anarchos has joined #ocaml
<olle>
d_bot: hack is no longer compatible with php, so it's useless for me
<olle>
bot?
lyxia has quit [Quit: WeeChat 2.8]
<Fardale>
olle: this is the discord bridge, you can see the username between <>
dckc has quit [Ping timeout: 246 seconds]
<olle>
hm ok
<olle>
thanks
dckc has joined #ocaml
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
nullcone has joined #ocaml
olle_ has joined #ocaml
drdee has quit [Remote host closed the connection]
drdee has joined #ocaml
jbrown has quit [Ping timeout: 258 seconds]
jbrown has joined #ocaml
chripell has quit [Ping timeout: 265 seconds]
andreas303 has quit [Remote host closed the connection]
andreas303 has joined #ocaml
<flux1>
hmph, oUnit2 doesn't support running more than one but less than all tests, does it? and I can't get -suite-name working :/
<flux1>
ah, -only-test can be given multiple times
<flux1>
so now I only need to figure out why my tests work when running one-by-one, but occasionally fail when running multiple :/
<flux1>
I'll start by adding random delays!
<zozozo>
flux1: some kind of shared mutable state that is not reset properly ?
<zozozo>
also, doesn't ounit try and paralelize the tests ? (I seem to remembre using -sequential or something like that to avoid some problems)
<flux1>
yes, I've tried both
<flux1>
but the issue could be somewhere that I start a docker container for postgresql, setup the database, start the main function of my app-under-test, then send a query to it over http, and determine if it's correct
<flux1>
the http query seems to time out for no particular reason
<flux1>
hmm, maybe it's that at_exit handler I have for stopping the container
<flux1>
'fork'ing could break it, right?
tane has joined #ocaml
<flux1>
nah, it's not it (though I guess it can also be a reason)
<zozozo>
forking would likely duplicate the at_exit handler
<zozozo>
but I seem to remember that there is some kind of subtility with file descriptor when forking to avoid security issues
<flux1>
I don't think I need to worry about security in this case
<flux1>
I already take care about closing correct fds after forking, the fds that I care about that is