| Index: buildbot/buildbot_run.py | 
| diff --git a/buildbot/buildbot_run.py b/buildbot/buildbot_run.py | 
| index 4bdbbf2f608967c5b0c7421f25afadbad9fefbe8..f46ab1822fe3210b8d692028325f3e79296da9cc 100755 | 
| --- a/buildbot/buildbot_run.py | 
| +++ b/buildbot/buildbot_run.py | 
| @@ -179,12 +179,12 @@ def GypTestFormat(title, format=None, msvs_version=None, tests=[]): | 
| if msvs_version: | 
| env['GYP_MSVS_VERSION'] = msvs_version | 
| command = ' '.join( | 
| -      [sys.executable, 'trunk/gyptest.py', | 
| +      [sys.executable, 'gyp/gyptest.py', | 
| '--all', | 
| '--passed', | 
| '--format', format, | 
| '--path', CMAKE_BIN_DIR, | 
| -       '--chdir', 'trunk'] + tests) | 
| +       '--chdir', 'gyp'] + tests) | 
| if format == 'android': | 
| # gyptest needs the environment setup from envsetup/lunch in order to build | 
| # using the 'android' backend, so this is done in a single shell. | 
|  |