aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/work_module_not_in_go_work.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/testdata/script/work_module_not_in_go_work.txt')
-rw-r--r--src/cmd/go/testdata/script/work_module_not_in_go_work.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cmd/go/testdata/script/work_module_not_in_go_work.txt b/src/cmd/go/testdata/script/work_module_not_in_go_work.txt
index 23d908c302..9109b2de7f 100644
--- a/src/cmd/go/testdata/script/work_module_not_in_go_work.txt
+++ b/src/cmd/go/testdata/script/work_module_not_in_go_work.txt
@@ -6,8 +6,8 @@
! go list ./...
stderr 'pattern ./...: directory prefix . does not contain modules listed in go.work or their selected dependencies'
-! go list ./a
-stderr 'directory a outside modules listed in go.work'
+! go list ./a/c
+stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using go work use a'
-- go.work --
go 1.18
@@ -19,6 +19,8 @@ module example.com/a
go 1.18
-- a/a.go --
package a
+-- a/c/c.go --
+package c
-- b/go.mod --
module example.com/b