tests/test-log
changeset 10957 0d5f139b23c1
parent 10826 717c35d55fb3
child 10960 ca739acf1a98
--- a/tests/test-log	Sat Apr 17 14:32:26 2010 +0200
+++ b/tests/test-log	Sun Apr 18 18:18:19 2010 -0400
@@ -135,4 +135,34 @@
 hg log -u "user1" -u "user2"
 hg log -u "user3"
 
+cd ..
+
+hg init branches
+cd branches
+
+echo a > a
+hg ci -A -m "commit on default"
+hg branch test
+echo b > b
+hg ci -A -m "commit on test"
+
+hg up default
+echo c > c
+hg ci -A -m "commit on default"
+hg up test
+echo c > c
+hg ci -A -m "commit on test"
+
+echo '% log -b default'
+hg log -b default
+
+echo '% log -b test'
+hg log -b test
+
+echo '% log -b dummy'
+hg log -b dummy
+
+echo '% log -b default -b test'
+hg log -b default -b test
+
 exit 0