1
2
3
4
5
6
7
8
9
10
11
|
#
# Tests for merging with renames
#
#
######################################
# Test 1 #
# Reported: Ticket [554f44ee74e3d] #
######################################
repo_init
|
>
>
>
>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# Tests for merging with renames
#
#
catch {exec $::fossilexe info} res
puts res=$res
if {![regexp {use --repository} $res]} {
puts stderr "Cannot run this test within an open checkout"
return
}
######################################
# Test 1 #
# Reported: Ticket [554f44ee74e3d] #
######################################
repo_init
|