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

Unified Diff: tests/upstream.sh

Issue 2360113002: Delete unneeded test. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/upstream.sh
diff --git a/tests/upstream.sh b/tests/upstream.sh
deleted file mode 100755
index 8c91ebfe9c7f8a1b52450163d7240871835ea859..0000000000000000000000000000000000000000
--- a/tests/upstream.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env bash
-
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Check guessing the svn upstream branch.
-
-set -e
-
-. ./test-lib.sh
-
-setup_initsvn
-setup_gitsvn
-
-(
- set -e
- cd git-svn
-
- git config rietveld.server localhost:10000
-
- for ref in refs/remotes/origin/trunk refs/remotes/origin/some_branch; do
- git branch -f --set-upstream feature_branch $ref
- git checkout -q feature_branch
- test_expect_success "Guessing upstream branch for $ref" \
- "$GIT_CL upstream | egrep -q '^$ref$'"
- git checkout -q master
- done
-)
-
-SUCCESS=$?
-
-cleanup
-
-if [ $SUCCESS == 0 ]; then
- echo PASS
-fi
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698