-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #241 from matthewrmshin/fix-rosie-branch-delete-wa…
…rning branch-delete: fix Perl warning on rosie branches
- Loading branch information
Showing
5 changed files
with
61 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/bash | ||
# ------------------------------------------------------------------------------ | ||
# (C) British Crown Copyright 2006-16 Met Office. | ||
# | ||
# This file is part of FCM, tools for managing and building source code. | ||
# | ||
# FCM is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# FCM is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with FCM. If not, see <http://www.gnu.org/licenses/>. | ||
# ------------------------------------------------------------------------------ | ||
# Test "fcm branch-delete" does not produce warnings for rosie branches. | ||
#------------------------------------------------------------------------------- | ||
. "$(dirname "$0")/test_header" | ||
tests 3 | ||
#------------------------------------------------------------------------------- | ||
# Tests fcm branch-delete with bad argument, and in a working copy | ||
TEST_KEY="${TEST_KEY_BASE}" | ||
setup | ||
init_repos_layout_roses | ||
svn copy -q -m 'create a branch' \ | ||
"${REPOS_URL}/a/a/0/0/0/trunk" "${REPOS_URL}/a/a/0/0/0/my-branch" | ||
run_pass "${TEST_KEY}" \ | ||
fcm branch-delete --non-interactive "${REPOS_URL}/a/a/0/0/0/my-branch" | ||
file_cmp "${TEST_DIR}/${TEST_KEY}.err" "${TEST_KEY}.err" <'/dev/null' | ||
run_pass "${TEST_KEY}.out" \ | ||
grep -q -F "Deleting branch ${REPOS_URL}/a/a/0/0/0/my-branch ..." \ | ||
"../${TEST_KEY}.out" | ||
teardown | ||
#------------------------------------------------------------------------------- | ||
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters