[Webkit-unassigned] [Bug 63610] [NRWT] make nrwt able to test the same order like orwt

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jul 4 06:28:42 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=63610





--- Comment #5 from Peter Gal <galpeter at inf.u-szeged.hu>  2011-07-04 06:28:42 PST ---
(In reply to comment #4)
> The list_name was number, except when it contained the 'http_lock', so it needed to use the str()
Oh I see, then you definitely need the str() somewhere.



> Tools/Scripts/webkitpy/layout_tests/layout_package/manager.py:580
> +            test_lists = [('http_lock' + tests if tests in tests_with_http_lock else tests,

Try this here:
 'http_lock%d' % tests if tests in tests_with_http_lock else str(tests)

then you don't need those ugly str()-s above

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list