Android: fix running executable unit tests.

The function was listing all bundles instead of the one
passed as param.

BUG=
TEST=


Review URL: https://chromiumcodereview.appspot.com/10704187

git-svn-id: http://src.chromium.org/svn/trunk/src/build@146366 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
bulach@chromium.org 2012-07-12 17:08:12 +00:00
Родитель fa19ebfa27
Коммит f6f5095aab
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -91,7 +91,7 @@ def FullyQualifiedTestSuites(exe, test_suites):
test_suite_dir = os.path.abspath(os.path.join(constants.CHROME_DIR,
'out', 'Release'))
if exe:
suites = [os.path.join(test_suite_dir, t) for t in _TEST_SUITES]
suites = [os.path.join(test_suite_dir, t) for t in test_suites]
else:
# out/Release/$SUITE_apk/$SUITE-debug.apk
suites = [os.path.join(test_suite_dir,