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

Unified Diff: dart/tools/make_links.py

Issue 11359187: Allow tests to specify a package root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix bug and add workaround Created 8 years, 1 month 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
« no previous file with comments | « dart/tests/standalone/package/package_test.dart ('k') | dart/tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/make_links.py
diff --git a/dart/tools/make_links.py b/dart/tools/make_links.py
new file mode 100644
index 0000000000000000000000000000000000000000..d9f91d5f9fdb05202933cf1115a5d44360c55425
--- /dev/null
+++ b/dart/tools/make_links.py
@@ -0,0 +1,53 @@
+#!/usr/bin/env python
+# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+
+
+'''Tool for creating symlinks from SOURCES to TARGET.
+
+For each SOURCE in SOURCES create a link from SOURCE to TARGET. If a
+SOURCE ends with .../lib, the lib suffix is ignored when determining
+the name of the target link.
+
+Usage:
+ python tools/make_links.py TARGET SOURCES...
+'''
+
+import os
+import subprocess
+import sys
+import utils
+
+
+def make_link(source, target):
+ if os.path.islink(target):
+ os.unlink(target)
+ # TODO(ahe): Remove this code when the build bots are green again.
+ bug_cleanup = os.path.join(target, 'lib')
Mads Ager (google) 2012/11/19 11:32:03 source
ahe 2012/11/19 11:35:46 Done.
+ if os.path.islink(bug_cleanup):
+ os.unlink(target)
Mads Ager (google) 2012/11/19 11:32:03 bug_cleanup
ahe 2012/11/19 11:35:46 Done.
+ if utils.GuessOS() == 'win32':
+ return subprocess.call(['mklink', '/j', target, source])
+ else:
+ return subprocess.call(['ln', '-s', source, target])
+
+
+def main(argv):
+ target = argv[1]
+ for source in argv[2:]:
+ # Assume the source directory is named ".../TARGET_NAME/lib".
+ (name, lib) = os.path.split(source)
+ if lib != 'lib':
+ name = source
+ # Remove any addtional path components preceding TARGET_NAME.
+ (path, name) = os.path.split(name)
+ exit_code = make_link(os.path.relpath(source, start=target),
+ os.path.join(target, name))
+ if exit_code != 0:
+ return exit_code
+ return 0
+
+
+if __name__ == '__main__':
+ sys.exit(main(sys.argv))
« no previous file with comments | « dart/tests/standalone/package/package_test.dart ('k') | dart/tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698