*** Submitted as http://code.google.com/p/go/source/detail?r=4151d4de5a04 *** runtime: disable gc test on non-amd64 systems R=golang-dev, rsc CC=golang-dev ...
12 years, 10 months ago
(2012-05-17 01:34:49 UTC)
#3
12 years, 10 months ago
(2012-05-17 03:24:37 UTC)
#4
> func TestGcSys(t *testing.T) {
> + if runtime.GOARCH != "amd64" {
> + // TODO(adg): remove this when precise gc is implemented
> + t.Logf("skipping on non-amd64 systems")
> + return
> + }
does gccgo use these tests?
Chris Wedgwood <cw@f00f.org> writes: >> func TestGcSys(t *testing.T) { >> + if runtime.GOARCH != "amd64" ...
12 years, 10 months ago
(2012-05-17 04:25:13 UTC)
#5
Chris Wedgwood <cw@f00f.org> writes:
>> func TestGcSys(t *testing.T) {
>> + if runtime.GOARCH != "amd64" {
>> + // TODO(adg): remove this when precise gc is implemented
>> + t.Logf("skipping on non-amd64 systems")
>> + return
>> + }
>
> does gccgo use these tests?
Yes, I periodically copy the gc testsuite over to gccgo. I don't mind
disabling this test, though.
Ian
Issue 6210062: code review 6210062: runtime: disable gc test on non-amd64 systems
(Closed)
Created 12 years, 10 months ago by adg
Modified 12 years, 10 months ago
Reviewers: cw, iant2
Base URL:
Comments: 0