From 7cc4516ac8305acf3689a2b755932512a1bf6efd Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Tue, 9 May 2023 09:50:19 -0400 Subject: internal/testdir: move to cmd/internal/testdir The effect and motivation is for the test to be selected when doing 'go test cmd' and not when doing 'go test std' since it's primarily about testing the Go compiler and linker. Other than that, it's run by all.bash and 'go test std cmd' as before. For #56844. Fixes #60059. Change-Id: I2d499af013f9d9b8761fdf4573f8d27d80c1fccf Reviewed-on: https://go-review.googlesource.com/c/go/+/493876 Run-TryBot: Dmitri Shuralyov Reviewed-by: Bryan Mills Auto-Submit: Dmitri Shuralyov TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov --- test/codegen/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/codegen') diff --git a/test/codegen/README b/test/codegen/README index 1d68780394..5a4684284b 100644 --- a/test/codegen/README +++ b/test/codegen/README @@ -21,7 +21,7 @@ GOARCH are enabled by default, and only on GOOS=linux. To perform comprehensive tests for all the supported architectures (even on a non-Linux system), one can run the following command: - $ ../../bin/go test internal/testdir -run='Test/codegen' -all_codegen -v + $ ../../bin/go test cmd/internal/testdir -run='Test/codegen' -all_codegen -v This is recommended after any change that affect the compiler's code. -- cgit v1.3-5-g9baa