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

Unified Diff: third_party/recipe_engine/unittests/show_me_the_modules_test.py

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved show_me_the_modules into recipe_engine Created 5 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: third_party/recipe_engine/unittests/show_me_the_modules_test.py
diff --git a/scripts/tools/unittests/show_me_the_modules_test.py b/third_party/recipe_engine/unittests/show_me_the_modules_test.py
similarity index 79%
rename from scripts/tools/unittests/show_me_the_modules_test.py
rename to third_party/recipe_engine/unittests/show_me_the_modules_test.py
index c963dae295e17e74d233082ee8067b469ed6e83f..17c5ce881e085df9225dc97510eac021d127940b 100755
--- a/scripts/tools/unittests/show_me_the_modules_test.py
+++ b/third_party/recipe_engine/unittests/show_me_the_modules_test.py
@@ -11,8 +11,8 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
class ShowMeTheModulesTest(unittest.TestCase):
def testShowMeTheModules(self):
- scriptPath = os.path.join(BASE_DIR, 'show_me_the_modules.py')
- exitcode = subprocess.call(['python', scriptPath])
+ scriptPath = os.path.join(BASE_DIR, 'recipes.py')
+ exitcode = subprocess.call(['python', scriptPath, 'show_me_the_modules'])
self.assertEqual(0, exitcode)
if __name__ == '__main__':

Powered by Google App Engine
This is Rietveld 408576698