| Index: test/rules-dirname/gyptest-dirname.py
|
| diff --git a/test/rules-dirname/gyptest-dirname.py b/test/rules-dirname/gyptest-dirname.py
|
| index 420b80f05c5f22457df8133f8ee3a3474c66453e..ce54b70152682368135d3c04a1853bc6bbef0367 100755
|
| --- a/test/rules-dirname/gyptest-dirname.py
|
| +++ b/test/rules-dirname/gyptest-dirname.py
|
| @@ -29,7 +29,12 @@ if test.format == 'xcode':
|
| chdir = 'relocate/src/subdir'
|
| else:
|
| chdir = 'relocate/src'
|
| -test.run_built_executable('gencc_int_output', chdir=chdir, stdout=expect)
|
| +if test.format == 'android':
|
| + test.run_built_executable('gencc_int_output', chdir=chdir, stdout=expect,
|
| + subdir='subdir')
|
| +else:
|
| + test.run_built_executable('gencc_int_output', chdir=chdir, stdout=expect)
|
| +
|
| if test.format == 'msvs':
|
| test.run_built_executable('gencc_int_output_external', chdir=chdir,
|
| stdout=expect)
|
|
|