mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 856246 - support specifying thread count in jit-test metalines. r=terrence
This commit is contained in:
parent
8125daee22
commit
cbcc26a5b0
@ -114,6 +114,11 @@ class Test:
|
||||
test.expect_status = int(value, 0);
|
||||
except ValueError:
|
||||
print("warning: couldn't parse exit status %s" % value)
|
||||
elif name == 'thread-count':
|
||||
try:
|
||||
test.jitflags.append('--thread-count=' + int(value, 0));
|
||||
except ValueError:
|
||||
print("warning: couldn't parse thread-count %s" % value)
|
||||
else:
|
||||
print('warning: unrecognized |jit-test| attribute %s' % part)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user