<div dir="ltr"><pre style="white-space:pre-wrap;color:rgb(0,0,0);font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;word-spacing:0px;text-decoration-style:initial;text-decoration-color:initial">piglit/framework$ diff -c profile.py.orig profile.py
*** profile.py.orig     2018-05-07 19:11:37.649994643 +0300
--- profile.py  2018-05-07 19:11:46.880994608 +0300
***************
*** 584,591 ****
               # more code, and adding side-effects
               test_list = (x for x in test_list if filterby(x))

!         pool.imap(lambda pair: test(pair[0], pair[1], profile, pool),
!                   test_list, chunksize)

       def run_profile(profile, test_list):
           """Run an individual profile."""
--- 584,591 ----
               # more code, and adding side-effects
               test_list = (x for x in test_list if filterby(x))

!         pool.map(lambda pair: test(pair[0], pair[1], profile, pool),
!                  test_list, chunksize)

       def run_profile(profile, test_list):
           """Run an individual profile."""
</pre><br class="gmail-Apple-interchange-newline">This   doesn't  resolve my problem. </div><br><div class="gmail_quote"><div dir="ltr">On Mon, May 7, 2018 at 5:24 PM Juan A. Suarez Romero <<a href="mailto:jasuarez@igalia.com">jasuarez@igalia.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Mon, 2018-05-07 at 13:20 +0000, Illia Iorin wrote:<br>
> ping<br>
> <br>
<br>
This is being covered in <a href="https://lists.freedesktop.org/archives/piglit/2018-May/024233.html" rel="noreferrer" target="_blank">https://lists.freedesktop.org/archives/piglit/2018-May/<br>
024233.html</a><br>
<br>
<br>
        J.A.<br>
<br>
> On Sun, May 6, 2018 at 12:46 PM Alejandro Piñeiro <<a href="mailto:apinheiro@igalia.com" target="_blank">apinheiro@igalia.com</a>> wrote:<br>
> > Recently I have started to have the same issue. With a small amount of tests, this problem happens now and then. With a big amount of tests, this happens most of the times. Didn't have time to take a look though.<br>
> > <br>
> > On 05/05/18 13:40, Illia Iorin wrote:<br>
> > >  I clone and make deqp. And when i run necessary bin file from console all is ok. But when i try edit piglit conf file i got that output. ./piglit run  -f piglit.conf.example   deqp_gles3 reuslt/all<br>
> > > [00000/46232]  <br>
> > > Traceback (most recent call last):<br>
> > >   File "./piglit", line 178, in <module><br>
> > >     main()<br>
> > >   File "./piglit", line 174, in main<br>
> > >     sys.exit(runner(args))<br>
> > >   File "/home/skif/piglit/framework/exceptions.py", line 51, in _inner<br>
> > >     func(*args, **kwargs)<br>
> > >   File "/home/skif/piglit/framework/programs/run.py", line 370, in run<br>
> > >     backend.finalize({'time_elapsed': time_elapsed.to_json()})<br>
> > >   File "/home/skif/piglit/framework/backends/json.py", line 163, in finalize<br>
> > >     assert data['tests']<br>
> > > AssertionError<br>
> > >  i provide my piglit.conf file. <br>
> > > <br>
> > > <br>
> > > _______________________________________________<br>
> > > Piglit mailing list<br>
> > > <a href="mailto:Piglit@lists.freedesktop.org" target="_blank">Piglit@lists.freedesktop.org</a><br>
> > > <a href="https://lists.freedesktop.org/mailman/listinfo/piglit" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/piglit</a><br>
> >  <br>
> <br>
> _______________________________________________<br>
> Piglit mailing list<br>
> <a href="mailto:Piglit@lists.freedesktop.org" target="_blank">Piglit@lists.freedesktop.org</a><br>
> <a href="https://lists.freedesktop.org/mailman/listinfo/piglit" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/piglit</a><br>
</blockquote></div>