Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(842)

Unified Diff: platform_tools/android/tests/gyp_to_android_tests.py

Issue 481943002: Fix Android platform self-tests (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: platform_tools/android/tests/gyp_to_android_tests.py
diff --git a/platform_tools/android/tests/gyp_to_android_tests.py b/platform_tools/android/tests/gyp_to_android_tests.py
index 512ce36548de53106c0b9837b07b0fb65e5d82de..434afd11cebddbf5b30d2ae0d464d76bd2e7a81c 100644
--- a/platform_tools/android/tests/gyp_to_android_tests.py
+++ b/platform_tools/android/tests/gyp_to_android_tests.py
@@ -37,11 +37,6 @@ class AndroidMkCreationTest(unittest.TestCase):
test_variables.ANDROID_MK)
self.assertTrue(os.path.exists(path_to_android_mk))
- # In addition, there should be an 'Android.mk' inside /tests/
- path_to_tests_android_mk = os.path.join(self.__tmp_dir, 'tests',
- test_variables.ANDROID_MK)
- self.assertTrue(os.path.exists(path_to_tests_android_mk))
-
def tearDown(self):
# Remove self.__tmp_dir, which is no longer needed.
shutil.rmtree(self.__tmp_dir)

Powered by Google App Engine
This is Rietveld 408576698