cfbolz changed the topic of #pypy to: PyPy, the flexible snake (IRC logs: https://quodlibet.duckdns.org/irc/pypy/latest.log.html#irc-end ) | use cffi for calling C | if a pep adds a mere 25-30 [C-API] functions or so, it's a drop in the ocean (cough) - Armin
jcea has joined #pypy
lritter has quit [Ping timeout: 240 seconds]
inhahe has quit [Remote host closed the connection]
inhahe has joined #pypy
inhahe has quit [Read error: Connection reset by peer]
inhahe has joined #pypy
inhahe has quit [Read error: Connection reset by peer]
inhahe has joined #pypy
inhahe has quit [Remote host closed the connection]
inhahe has joined #pypy
inhahe has quit [Read error: Connection reset by peer]
inhahe has joined #pypy
inhahe has quit [Read error: Connection reset by peer]
inhahe has joined #pypy
inhahe has quit [Remote host closed the connection]
inhahe has joined #pypy
inhahe has quit [Read error: Connection reset by peer]
inhahe has joined #pypy
inhahe has quit [Read error: Connection reset by peer]
inhahe has joined #pypy
inhahe has quit [Remote host closed the connection]
inhahe has joined #pypy
inhahe has quit [Read error: Connection reset by peer]
inhahe has joined #pypy
inhahe has quit [Remote host closed the connection]
inhahe has joined #pypy
inhahe has quit [Client Quit]
ronan has quit [Remote host closed the connection]
mgedmin has quit [Quit: ZNC - https://wiki.znc.in/ZNC]
mgedmin has joined #pypy
jcea has quit [Remote host closed the connection]
jcea has joined #pypy
commandoline has quit [Ping timeout: 244 seconds]
commandoline has joined #pypy
jcea has quit [Quit: jcea]
bionicpup64_2042 has joined #pypy
bionicpup64_2042 has quit [Ping timeout: 250 seconds]
dddddd has quit [Remote host closed the connection]
tsaka__ has quit [Ping timeout: 252 seconds]
ronan_ has joined #pypy
ronan_ is now known as ronan
Ninpo has quit [*.net *.split]
edd has quit [*.net *.split]
jerith has quit [*.net *.split]
danilonc has quit [*.net *.split]
gsnedders has quit [*.net *.split]
gsnedders has joined #pypy
Ninpo has joined #pypy
edd has joined #pypy
danilonc has joined #pypy
jerith has joined #pypy
tsaka__ has joined #pypy
ronan has quit [Ping timeout: 246 seconds]
jvesely has quit [Quit: jvesely]
jvesely has joined #pypy
jvesely has quit [Quit: jvesely]
tsaka__ has quit [Quit: Konversation terminated!]
tsaka__ has joined #pypy
oberstet has quit [Quit: Leaving]
tsaka__ has quit [Ping timeout: 240 seconds]
tsaka__ has joined #pypy
jcea has joined #pypy
Rhy0lite has joined #pypy
ekaologik has joined #pypy
WGH has quit [*.net *.split]
riddle has quit [*.net *.split]
pepesza has quit [*.net *.split]
tbodt has quit [*.net *.split]
alcarithemad has quit [*.net *.split]
atomizer has quit [*.net *.split]
RoadrunnerWMC has quit [*.net *.split]
dstufft has quit [*.net *.split]
tbodt has joined #pypy
riddle has joined #pypy
WGH has joined #pypy
RoadrunnerWMC has joined #pypy
pepesza has joined #pypy
atomizer has joined #pypy
alcarithemad has joined #pypy
dstufft has joined #pypy
WGH has quit [*.net *.split]
riddle has quit [*.net *.split]
pepesza has quit [*.net *.split]
tbodt has quit [*.net *.split]
alcarithemad has quit [*.net *.split]
atomizer has quit [*.net *.split]
RoadrunnerWMC has quit [*.net *.split]
dstufft has quit [*.net *.split]
tbodt has joined #pypy
riddle has joined #pypy
WGH has joined #pypy
pepesza has joined #pypy
RoadrunnerWMC has joined #pypy
atomizer has joined #pypy
alcarithemad has joined #pypy
dstufft has joined #pypy
froztbyte has quit [Quit: Lost terminal]
lritter has joined #pypy
<antocuni> fwiw, I created an issue for the slowness of "for line in f:" on pypy3: https://bitbucket.org/pypy/pypy/issues/3126/iter-open-filename-very-slow-in-pypy3
<antocuni> it seems we get very different results depending on the phase of the moon at build time
marky1991 has quit [Ping timeout: 276 seconds]
<mattip> the aarch64 buildbot is somehow restoring an old version of the cached files in
<mattip> build_dir/pypy-c-jit-linux-aarch64/rpython/_cache/frozen_importlib_*
<mattip> with the end result that all the pypyjit tests are failing
ronan has joined #pypy
<mattip> all the files in the cache have a timestamp of 8am-10am, when the test itself started at 12am
<mattip> I even added an rm command in b9eacb5f9a98
<antocuni> mattip: is it running inside a docker image? Could it be that it is mounting an external volume which somehow contains the culprit files?
<antocuni> (I'm mostly thinking aloud, I don't really know much of what we are talking about :))
<mattip> that's what I need right now so great!
<mattip> it is a aws machine I think
<antocuni> what is the repo of b9eacb5f9a98?
<mattip> pypy
<mattip> and you can see that it runs in the stdio report of the test run
<mattip> just before the " ========== test session starts ========= "
<antocuni> shutil.rmtree('%s/rpython/_cache', ignore_errors=True)
<antocuni> maybe this directory is somehow owned by root?
<antocuni> and so it is not removed by any of these steps, but you don't notice because of ignore_erros=True?
<mattip> nope. The strangest thing is, that in the hg purge step, you can see that some of the files in rpython/_cache are removed, but not all
<mattip> which is step 4 of the build
<antocuni> what about putting "os.system('find -print0 | xargs ls -l')" in test_all? Maybe before and after the shutil.remove
<mattip> ok
<antocuni> also, I suggest to start a branch in which you can freely modify test_all with all the hacks you need
<antocuni> but first, make sure that you have the same problem also in the branch :)
<antocuni> (for all I know, the buildbot could keep different working directories for different branches, and this problem be present only on default)
adamholmberg has joined #pypy
<antocuni> xargs -0, of course
<mattip> I will just put it on the py3.6 branch and wait till tomorrow, there is no hurry
<antocuni> ah, maybe it is enough to do "ls -R -l /path/to/the/culprit/directory"
marky1991 has joined #pypy
<mattip> hah, ok, stupid typo in that commit in the rmtree command
<antocuni> oh I see
<mattip> let's see if that is enough
<antocuni> no % :(
<mattip> thanks
<antocuni> not that I did anything, but you're welcome :)
marky1991 has quit [Ping timeout: 240 seconds]
<kenaan> mattip default 94907f4adb70 /pypy/test_all.py: typo
<kenaan> mattip py3.6 5a724d59f277 /: merge default into branch
dddddd has joined #pypy
jvesely has joined #pypy
jcea has quit [Remote host closed the connection]
jcea has joined #pypy
marky1991 has joined #pypy
i9zO5AP has joined #pypy
Ai9zO5AP has quit [Ping timeout: 250 seconds]
jvesely has quit [Quit: jvesely]
marky1991 has quit [Remote host closed the connection]
marky1991 has joined #pypy
jvesely has joined #pypy
marky1991 has quit [Ping timeout: 252 seconds]
marky1991 has joined #pypy
marky1991 has quit [Ping timeout: 265 seconds]
marky1991 has joined #pypy
ekaologik has quit [Quit: https://quassel-irc.org - Komfortabler Chat. Überall.]
bionicpup64_2042 has joined #pypy
bionicpup64_2042 has quit [Ping timeout: 240 seconds]
mattip has quit [Ping timeout: 268 seconds]
Rhy0lite has quit [Quit: Leaving]
mattip has joined #pypy
mattip has quit [Ping timeout: 265 seconds]
jvesely has quit [Quit: jvesely]
marky1991 has quit [Ping timeout: 250 seconds]
marky1991 has joined #pypy
mattip has joined #pypy
jvesely has joined #pypy
ionelmc has quit [Quit: Connection closed for inactivity]
bionicpup64_2042 has joined #pypy
jvesely has quit [Quit: jvesely]
i9zO5AP has quit [Quit: WeeChat 2.5]
asmeurer has joined #pypy
edd has quit [Quit: WeeChat 2.6]
ebarrett has joined #pypy
bionicpup64_2042 has quit [Ping timeout: 240 seconds]
asmeurer has quit [Quit: asmeurer]
adamholmberg has quit [Remote host closed the connection]