aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/README
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2018-12-07 17:36:55 -0500
committerBryan C. Mills <bcmills@google.com>2018-12-11 16:41:35 +0000
commitba607240f76fce446e1104d034e444ec42e22c73 (patch)
tree2b5bf21e5ec73afd9be3330c9fc7db696f053e3b /src/cmd/go/testdata/script/README
parent21da8e6022d1d148741ba3c08cdc555df500520e (diff)
downloadgo-ba607240f76fce446e1104d034e444ec42e22c73.tar.gz
go-ba607240f76fce446e1104d034e444ec42e22c73.zip
cmd/go: add a chmod command to script_test
Change-Id: I5d4f65553f6c368d101be59aae9440f5ec9573b7 Reviewed-on: https://go-review.googlesource.com/c/153461 Run-TryBot: Bryan C. Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/cmd/go/testdata/script/README')
-rw-r--r--src/cmd/go/testdata/script/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/script/README b/src/cmd/go/testdata/script/README
index 22124b9fb8..392ff34fc2 100644
--- a/src/cmd/go/testdata/script/README
+++ b/src/cmd/go/testdata/script/README
@@ -86,6 +86,10 @@ The commands are:
- cd dir
Change to the given directory for future commands.
+- chmod perm path...
+ Change the permissions of the files or directories named by the path arguments
+ to be equal to perm. Only numerical permissions are supported.
+
- cmp file1 file2
Check that the named files have the same content.
By convention, file1 is the actual data and file2 the expected data.