forked from OSchip/llvm-project
9ef307bfc1
Currently, the test runner makes the assumption that it will run commands through /bin/sh. This is obviously not true on Windows, so this patch abstracts this logic out somewhat. Instead of having the caller build the command string himself, the caller will now pass in argument list of the form [[a, b], [c, d], ...] which will get converted into a string of the form a b; c d or a b && c d, depending on the platform. Reviewed by: Todd Fiala Differential Revision: http://reviews.llvm.org/D4590 llvm-svn: 213669 |
||
---|---|---|
.. | ||
builder_base.py | ||
builder_darwin.py | ||
builder_freebsd.py | ||
builder_linux2.py | ||
builder_win32.py |