On 2/18/19 6:49 AM, Isira Seneviratne wrote:
> From 462243a2e8860ebbac2bedb90fa6cb97050a6080 Mon Sep 17 00:00:00 2001
> From: Isira Seneviratne <isirasen96@gmail.com>
> Date: Sun, 16 Dec 2018 14:59:20 +0530
> Subject: [PATCH v5] winetest: Add GUI to display results of individual tests.
>
> This patch adds a listview control displaying the results of each
> test, together with the component being tested.
>
> Advancing the file pointer of the log file by 1 eliminates most of the
> duplicate test entries displayed with the previous revision, except for
> advapi32:security tests, which has two entries due to those tests using
> two threads.
What you want to do about this is to loop until you find the last line
matching
that process, and then add it to the listview. That's what the
test.winehq.org
dissect script does.
Is there a way for me to see how this script works?