Re: [go-nuts] Any way to exclude testcase(s) from 'go test'?

2020-09-02 Thread Kurtis Rader
On Mon, Aug 31, 2020 at 11:22 PM xiangdong...@gmail.com < xiangdong...@gmail.com> wrote: > The issue happens at building time of 'go test' for misc/cgo/test, I was > expecting 'go test' is powerful enough to skip building a specific case > given a negation pattern and without involving tags, but

Re: [go-nuts] Any way to exclude testcase(s) from 'go test'?

2020-09-01 Thread xiangdong...@gmail.com
The issue happens at building time of 'go test' for misc/cgo/test, I was expecting 'go test' is powerful enough to skip building a specific case given a negation pattern and without involving tags, but just realized it's a wrong way, 'go test' always builds all dependency stuff. Now the

Re: [go-nuts] Any way to exclude testcase(s) from 'go test'?

2020-08-31 Thread Kurtis Rader
On Mon, Aug 31, 2020 at 9:03 PM xiangd...@arm.com wrote: > Thanks for replying, background is the github issue 39466 > and its potential fix > under reviewing, we are > trying not to introduce any

Re: [go-nuts] Any way to exclude testcase(s) from 'go test'?

2020-08-31 Thread xiangd...@arm.com
Hi Kurtis, Thanks for replying, background is the github issue 39466 and its potential fix under reviewing, we are trying not to introduce any additional test files and tags but seeking for a change

Re: [go-nuts] Any way to exclude testcase(s) from 'go test'?

2020-08-31 Thread Kurtis Rader
On Mon, Aug 31, 2020 at 8:46 PM xiangdong...@gmail.com < xiangdong...@gmail.com> wrote: > I'm looking for a way to exclude one specific testcase (perhaps multiple > in the future) from 'go test' and wondering how to define a 'negation' > pattern? > > For example, how to run all testcases of

[go-nuts] Any way to exclude testcase(s) from 'go test'?

2020-08-31 Thread xiangdong...@gmail.com
Hi, I'm looking for a way to exclude one specific testcase (perhaps multiple in the future) from 'go test' and wondering how to define a 'negation' pattern? For example, how to run all testcases of misc/cgo/test except for a specific one, say Test7978? Thanks a lot. -- You received this