Fix testing and buildbot.

Review URL: http://codereview.chromium.org//8283031

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@431 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ngeoffray@google.com 2011-10-14 12:36:16 +00:00
parent d2ace1a9da
commit fd40730343
2 changed files with 4 additions and 2 deletions

View file

@ -6,8 +6,11 @@ prefix stub-generator
[ $arch == ia32 ]
MintMakerFullyIsolatedTest: Skip # issue 115
MintMakerPromiseWithStubsTest: Fail
[ $arch == dartc ]
MintMakerFullyIsolatedTest: Skip
MintMakerPromiseWithStubsTest: Fail
[ $arch == x64 ]
*: Skip

View file

@ -612,8 +612,7 @@ class Context(object):
def GetDartC(self, mode, arch):
"""Returns the path to the Dart --> JS compiler."""
dartc = os.path.abspath(os.path.join(
utils.GetBaseDir(), 'compiler', self.GetBuildRoot(mode, arch),
'compiler', 'bin', 'dartc'))
self.GetBuildRoot(mode, arch), 'compiler', 'bin', 'dartc'))
if utils.IsWindows(): dartc += '.exe'
command = [dartc]