Johnny Chen 1b1b9accd1 Marked test_process_launch_for_universal() test case as requiring 'darwin' and 'i386'
in order to be run.  And added a default build phase at the beginning of the method.

llvm-svn: 113037
2010-09-03 23:49:16 +00:00

22 lines
529 B
Python

import lldbtest
#print "Hello, darwin plugin!"
def buildDefault():
lldbtest.system(["/bin/sh", "-c", "make clean; make"])
# True signifies that we can handle building default.
return True
def buildDsym():
lldbtest.system(["/bin/sh", "-c", "make clean; make MAKE_DSYM=YES"])
# True signifies that we can handle building dsym.
return True
def buildDwarf():
lldbtest.system(["/bin/sh", "-c", "make clean; make MAKE_DSYM=NO"])
# True signifies that we can handle building dsym.
return True