mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43071c9a42
This will help integration with the jstests framework, which also uses a single prefix argument to its Test command construction method. Note that the order of js arguments is changed, from: cmd = [js] + list(set(self.jitflags)) + shell_args + ['-e', expr] cmd += ['-f', os.path.join(LIB_DIR, 'prolog.js'), '-f', self.path] to: prefix = [os.path.abspath(args[0])] + shlex.split(options.shell_args) prefix += ['-f', os.path.join(jittests.LIB_DIR, 'prolog.js')] cmd = prefix + list(set(self.jitflags)) + ['-e', expr, '-f', self.path] The assumption here is that only the order of -f options matters. --HG-- extra : rebase_source : 9655d6efc62006aa840d72f6b31d764bd870cc7d |
||
---|---|---|
.. | ||
ductwork/debugger | ||
examples | ||
ipc | ||
jsd | ||
public | ||
src | ||
xpconnect |