diff options
Diffstat (limited to 'src/cmd/go/testdata/script/mod_stale.txt')
-rw-r--r-- | src/cmd/go/testdata/script/mod_stale.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/script/mod_stale.txt b/src/cmd/go/testdata/script/mod_stale.txt new file mode 100644 index 0000000..c6ab27d --- /dev/null +++ b/src/cmd/go/testdata/script/mod_stale.txt @@ -0,0 +1,15 @@ +[short] skip + +env GOCACHE=$WORK/cache +go list -f '{{.Stale}}' . +stdout true +go install . +go list -f '{{.Stale}}' . +stdout false + +-- go.mod -- +module example.com/mod + +go 1.20 +-- m.go -- +package m |