#!/bin/sh # # Regression test for https://gitlab.com/CodethinkLabs/lorry/lorry/-/issues/7 # # Copyright (C) 2012, 2020 Codethink Limited # # This program 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; version 2 of the License. # # This program 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 this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. set -e logfile="$DATADIR/hg-test-repo.log" workdir="$DATADIR/work-dir" "${SRCDIR}/test-lorry" --verbose --pull-only --log="$logfile" --working-area="$workdir" \ "$DATADIR/hg-test-repo.lorry" > /dev/null grep -o 'pruned [0-9]* unreachable commit' < "$logfile" || true # verify that the git repository was created correctly ( cd "$workdir/hg-test-repo/git-a/" # check number of commits generated wc -l hg2git-marks # list the branches git show-ref | cut -d' ' -f2 # cat the test file git cat-file blob master:test.txt # list the commit messages git log --pretty='%s' master ) # check that we can another incremental conversion succeeds, and # that this involves pruning an unreachable commit "${SRCDIR}/test-lorry" --verbose --pull-only --log="$logfile" --working-area="$workdir" \ "$DATADIR/hg-test-repo.lorry" > /dev/null grep -o 'pruned [0-9]* unreachable commit' < "$logfile"