[PATCH 8 of 9] tests: unify tests-debugindexdot.t
in3xes at gmail.com
in3xes at gmail.com
Tue Aug 17 12:38:05 UTC 2010
# HG changeset patch
# User Pradeepkumar Gayam <in3xes at gmail.com>
# Date 1282048444 -19800
# Node ID 4532411880f903c112edb0dd2ef779e361bd6f43
# Parent 8abf8e47ef635374749e9ebdf66afbe99b8461e7
tests: unify tests-debugindexdot.t
diff -r 8abf8e47ef63 -r 4532411880f9 tests/test-debugindexdot
--- a/tests/test-debugindexdot Tue Aug 17 18:02:13 2010 +0530
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-# Just exercize debugindexdot
-# Create a short file history including a merge.
-hg init t
-cd t
-echo a > a
-hg ci -qAm t1 -d '0 0'
-echo a >> a
-hg ci -m t2 -d '1 0'
-hg up -qC 0
-echo b >> a
-hg ci -m t3 -d '2 0'
-HGMERGE=true hg merge -q
-hg ci -m merge -d '3 0'
-
-hg debugindexdot .hg/store/data/a.i
diff -r 8abf8e47ef63 -r 4532411880f9 tests/test-debugindexdot.out
--- a/tests/test-debugindexdot.out Tue Aug 17 18:02:13 2010 +0530
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-created new head
-digraph G {
- -1 -> 0
- 0 -> 1
- 0 -> 2
- 2 -> 3
- 1 -> 3
-}
diff -r 8abf8e47ef63 -r 4532411880f9 tests/test-debugindexdot.t
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test-debugindexdot.t Tue Aug 17 18:04:04 2010 +0530
@@ -0,0 +1,23 @@
+Just exercize debugindexdot
+Create a short file history including a merge.
+ $ hg init t
+ $ cd t
+ $ echo a > a
+ $ hg ci -qAm t1 -d '0 0'
+ $ echo a >> a
+ $ hg ci -m t2 -d '1 0'
+ $ hg up -qC 0
+ $ echo b >> a
+ $ hg ci -m t3 -d '2 0'
+ created new head
+ $ HGMERGE=true hg merge -q
+ $ hg ci -m merge -d '3 0'
+
+ $ hg debugindexdot .hg/store/data/a.i
+ digraph G {
+ -1 -> 0
+ 0 -> 1
+ 0 -> 2
+ 2 -> 3
+ 1 -> 3
+ }
More information about the Mercurial-devel
mailing list