| Index: test/same-gyp-name/gyptest-all.py
|
| diff --git a/test/same-gyp-name/gyptest-all.py b/test/same-gyp-name/gyptest-all.py
|
| index cda1a72d4d1e400444b794e9a8163e33478453e1..342e25e1220b1484d067b1ca806ef6692c1d7a56 100755
|
| --- a/test/same-gyp-name/gyptest-all.py
|
| +++ b/test/same-gyp-name/gyptest-all.py
|
| @@ -32,7 +32,13 @@ if test.format == 'xcode':
|
| else:
|
| chdir1 = chdir2 = 'relocate/src'
|
|
|
| -test.run_built_executable('program1', chdir=chdir1, stdout=expect1)
|
| -test.run_built_executable('program2', chdir=chdir2, stdout=expect2)
|
| +if test.format == 'android':
|
| + test.run_built_executable('program1', chdir=chdir1, stdout=expect1,
|
| + subdir='subdir1')
|
| + test.run_built_executable('program2', chdir=chdir2, stdout=expect2,
|
| + subdir='subdir2')
|
| +else:
|
| + test.run_built_executable('program1', chdir=chdir1, stdout=expect1)
|
| + test.run_built_executable('program2', chdir=chdir2, stdout=expect2)
|
|
|
| test.pass_test()
|
|
|