Hi Simon,
That's a bit better (still need to figure out why the recent threading issues, but one problem at a time :) )
From that list T10672_x64 is one I'm looking at already, seems to have something to do with the libstdc++ destructors.
Plugins 09 and 10 are the other two I know about, but haven't had time to look at them yet. Frankly I know too little about plugins to make an accurate determination here, but the input files are empty
yet it expects output, so I don't know what it's supposed to do here. If someone who knows more about plugins can chime in that would save some time.
The segfaulting plugin I haven't triaged yet. Now the remaining failures aside from T14452 that Roland is taking care of, seem to have to do with your locale in your console. You seem to be running the
tests in a console that has latin-1 locale? So some unicode characters fail encoding/decoding.
If it's a Windows shell you can change it to utf-8 using "chcp
65001", if it's an msys2 shell, what does "locale" return?
For reference mine is
$ locale
LANG=en_GB.UTF-8
LC_CTYPE="en_GB.UTF-8"
LC_NUMERIC="en_GB.UTF-8"
LC_TIME="en_GB.UTF-8"
LC_COLLATE="en_GB.UTF-8"
LC_MONETARY="en_GB.UTF-8"
LC_MESSAGES="en_GB.UTF-8"
LC_ALL=
If it does say latin1 you can change it with
export
LANG=en_GB.UTF-8
This should fix more of the tests.
The reason I don't mark the remaining tests as expect fail yet is because I haven't had the time to triage them, so I don't know their severity and
last time there were a few nasty issues hidden in them.
Unfortunately I won't have time to look at them till next weekend.
Thanks,
Tamar