summaryrefslogtreecommitdiffstats
path: root/src/cmd/go/testdata/vcstest/bzr
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/testdata/vcstest/bzr')
-rw-r--r--src/cmd/go/testdata/vcstest/bzr/hello.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/vcstest/bzr/hello.txt b/src/cmd/go/testdata/vcstest/bzr/hello.txt
new file mode 100644
index 0000000..7d06503
--- /dev/null
+++ b/src/cmd/go/testdata/vcstest/bzr/hello.txt
@@ -0,0 +1,32 @@
+handle bzr
+
+env BZR_EMAIL='Russ Cox <rsc@google.com>'
+
+bzr init-repo .
+
+bzr init b
+cd b
+cp ../hello.go .
+bzr add hello.go
+bzr commit --commit-time='2017-09-21 21:20:12 -0400' -m 'hello world'
+bzr push ..
+cd ..
+rm b
+
+bzr log
+cmp stdout .bzr-log
+
+-- .bzr-log --
+------------------------------------------------------------
+revno: 1
+committer: Russ Cox <rsc@google.com>
+branch nick: b
+timestamp: Thu 2017-09-21 21:20:12 -0400
+message:
+ hello world
+-- hello.go --
+package main
+
+func main() {
+ println("hello, world")
+}