]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9135-git-svn-moved-branch-empty-file.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t9135-git-svn-moved-branch-empty-file.sh
CommitLineData
39111f6b
AG
1#!/bin/sh
2
3test_description='test moved svn branch with missing empty files'
4
5. ./lib-git-svn.sh
6test_expect_success 'load svn dumpfile' '
7 svnadmin load "$rawsvnrepo" < "${TEST_DIRECTORY}/t9135/svn.dump"
8 '
9
10test_expect_success 'clone using git svn' 'git svn clone -s "$svnrepo" x'
11
12test_expect_success 'test that b1 exists and is empty' '
b186a261
EW
13 (
14 cd x &&
fe191fca 15 git reset --hard origin/branch-c &&
ec10b018 16 test_must_be_empty b1
b186a261 17 )
39111f6b
AG
18 '
19
20test_done