tests/test-diff-copy-depth
branchstable
changeset 12795 3cb0559e44d0
parent 12793 469850088fc1
parent 12794 6bf8d48bec8e
child 12796 bc69ba99e34b
--- a/tests/test-diff-copy-depth	Wed Oct 20 23:39:48 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-for i in aaa zzz; do
-    hg init t
-    cd t
-
-    echo "-- With $i"
-
-    touch file
-    hg add file
-    hg ci -m "Add"
-
-    hg cp file $i
-    hg ci -m "a -> $i"
-
-    hg cp $i other-file
-    echo "different" >> $i
-    hg ci -m "$i -> other-file"
-
-    hg cp other-file somename
-
-    echo "Status":
-    hg st -C
-    echo
-    echo "Diff:"
-    hg diff -g
-    echo
-
-    cd ..
-    rm -rf t
-done