#!/bin/bash # ------------------------------------------------------------------------------ # (C) British Crown Copyright 2006-17 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 . # ------------------------------------------------------------------------------ # Basic tests for "fcm conflicts" (tree conflict mode). #------------------------------------------------------------------------------- . $(dirname $0)/test_header #------------------------------------------------------------------------------- check_svn_version tests 12 #------------------------------------------------------------------------------- setup init_repos init_branch ctrl $REPOS_URL init_branch_wc del_del $REPOS_URL cd $TEST_DIR/wc #------------------------------------------------------------------------------- # Tests fcm conflicts: delete, delete, discard local TEST_KEY=$TEST_KEY_BASE-discard svn switch -q $ROOT_URL/branches/dev/Share/ctrl svn delete -q pro/hello.pro svn commit -q -m "Deleted conflict file (local)" svn update -q svn switch -q $ROOT_URL/branches/dev/Share/del_del svn delete -q pro/hello.pro svn commit -q -m "Deleted conflict file (merge)" svn update -q svn switch -q $ROOT_URL/branches/dev/Share/ctrl fcm merge --non-interactive $ROOT_URL/branches/dev/Share/del_del >/dev/null run_pass "$TEST_KEY" fcm conflicts <<__IN__ n __IN__ file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__ [info] pro/hello.pro: in tree conflict. Locally: deleted. Externally: deleted. Answer (y) to accept the local delete. Answer (n) to accept the external delete. Keep the local version? Enter "y" or "n" (or just press for "n") Resolved conflicted state of 'pro/hello.pro' __OUT__ file_cmp "$TEST_KEY.err" "$TEST_KEY.err" /dev/null run_pass "$TEST_KEY" fcm conflicts <<__IN__ y __IN__ file_cmp "$TEST_KEY.out" "$TEST_KEY.out" <<__OUT__ [info] pro/hello.pro: in tree conflict. Locally: deleted. Externally: deleted. Answer (y) to accept the local delete. Answer (n) to accept the external delete. Keep the local version? Enter "y" or "n" (or just press for "n") Resolved conflicted state of 'pro/hello.pro' __OUT__ file_cmp "$TEST_KEY.err" "$TEST_KEY.err"