1#!/bin/sh
23
test_description='test moved svn branch with missing empty files'
45
. ./lib-git-svn.sh
6test_expect_success 'load svn dumpfile' '
7svnadmin load "$rawsvnrepo" < "${TEST_DIRECTORY}/t9135/svn.dump"
8'
910
test_expect_success 'clone using git svn' 'git svn clone -s "$svnrepo" x'
1112
test_expect_success 'test that b1 exists and is empty' '
13(
14cd x &&
15git reset --hard origin/branch-c &&
16test_must_be_empty b1
17)
18'
1920
test_done