view tests/test-parents @ 4810:f7c8222920ee

convert: svn: defer get_log parsing until after get_log completes. According to the documentation, it is not safe to perform any other operation on the ra object until get_log completes.
author Brendan Cully <brendan@kublai.com>
date Thu, 05 Jul 2007 12:18:01 -0700
parents 0d26e3d0eeeb
children be5dc5e3ab2d
line wrap: on
line source

#!/bin/sh
# test parents command

hg init a
cd a
echo % no working directory
hg parents

echo a > a
echo b > b
hg ci -Amab -d '0 0'
echo a >> a
hg ci -Ama -d '1 0'
echo b >> b
hg ci -Amb -d '2 0'

echo % hg parents
hg parents

echo % hg parents a
hg parents a

echo % hg parents -r 2
hg parents -r 2

echo % hg parents -r 2 a
hg parents -r 2 a