31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
regsub -all {\n *} [string trim $RESULT] "\n " result
if {$result!=$expected} {
protOut " Expected:\n $expected"
protOut " Got:\n $result"
test merge5-$testid 0
} else {
test merge5-$testid 1
}
}
require_no_open_checkout; test_setup ""
# Construct a test repository
#
exec $::fossilexe sqlite3 --no-repository m5.fossil <$testdir/${testfile}_repo.sql
|
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
regsub -all {\n *} [string trim $RESULT] "\n " result
if {$result!=$expected} {
protOut " Expected:\n $expected"
protOut " Got:\n $result"
test merge5-$testid 0
} else {
test merge5-$testid 1
}
}
require_no_open_checkout; test_setup ""
# Construct a test repository
#
exec $::fossilexe sqlite3 --no-repository m5.fossil <$testdir/${testfile}_repo.sql
|