36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
} else {
test merge5-$testid 1
}
}
catch {exec $::fossilexe info} res
puts res=$res
if {![regexp {not within an open checkout} $res]} {
puts stderr "Cannot run this test within an open checkout"
return
}
# Construct a test repository
#
exec sqlite3 m5.fossil <$testdir/${testfile}_repo.sql
|
|
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
} else {
test merge5-$testid 1
}
}
catch {exec $::fossilexe info} res
puts res=$res
if {![regexp {use --repository} $res]} {
puts stderr "Cannot run this test within an open checkout"
return
}
# Construct a test repository
#
exec sqlite3 m5.fossil <$testdir/${testfile}_repo.sql
|