mirror of
https://github.com/golang/go
synced 2024-11-20 03:14:43 -07:00
- update functionality for printer test
- moved test files from data to testdata - use tabs instead of spaces for layout R=rsc DELTA=129 (67 added, 60 deleted, 2 changed) OCL=31353 CL=31360
This commit is contained in:
parent
e7af3b8e05
commit
2ad7958b7e
@ -1,25 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import "fmt" // fmt
|
|
||||||
|
|
||||||
const c0 = 0 // zero
|
|
||||||
|
|
||||||
const (
|
|
||||||
c1 = iota; // c1
|
|
||||||
c2 // c2
|
|
||||||
)
|
|
||||||
|
|
||||||
type T struct {
|
|
||||||
a, b, c int // 3 fields
|
|
||||||
}
|
|
||||||
|
|
||||||
var x int // x
|
|
||||||
|
|
||||||
var ()
|
|
||||||
|
|
||||||
func f0() {
|
|
||||||
const pi = 3.14;
|
|
||||||
var s1 struct {}
|
|
||||||
var s2 struct {} = struct {}{};
|
|
||||||
x := pi
|
|
||||||
}
|
|
@ -6,6 +6,7 @@ package printer
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes";
|
"bytes";
|
||||||
|
"flag";
|
||||||
"io";
|
"io";
|
||||||
"go/ast";
|
"go/ast";
|
||||||
"go/parser";
|
"go/parser";
|
||||||
@ -18,12 +19,16 @@ import (
|
|||||||
|
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
dataDir = "testdata";
|
||||||
tabwidth = 4;
|
tabwidth = 4;
|
||||||
padding = 1;
|
padding = 1;
|
||||||
tabchar = ' ';
|
tabchar = '\t';
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
var update = flag.Bool("update", false, "update golden files");
|
||||||
|
|
||||||
|
|
||||||
func lineString(text []byte, i int) string {
|
func lineString(text []byte, i int) string {
|
||||||
i0 := i;
|
i0 := i;
|
||||||
for i < len(text) && text[i] != '\n' {
|
for i < len(text) && text[i] != '\n' {
|
||||||
@ -60,6 +65,14 @@ func check(t *testing.T, source, golden string, exports bool) {
|
|||||||
w.Flush();
|
w.Flush();
|
||||||
res := buf.Data();
|
res := buf.Data();
|
||||||
|
|
||||||
|
// update golden files if necessary
|
||||||
|
if *update {
|
||||||
|
if err := io.WriteFile(golden, res, 0644); err != nil {
|
||||||
|
t.Error(err);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// get golden
|
// get golden
|
||||||
gld, err := io.ReadFile(golden);
|
gld, err := io.ReadFile(golden);
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -89,18 +102,12 @@ func check(t *testing.T, source, golden string, exports bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const dataDir = "data";
|
|
||||||
|
|
||||||
type entry struct {
|
type entry struct {
|
||||||
source, golden string;
|
source, golden string;
|
||||||
exports bool;
|
exports bool;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Use gofmt to create/update the respective golden files:
|
// Use gotest -update to create/update the respective golden files.
|
||||||
//
|
|
||||||
// gofmt source.go > golden.go
|
|
||||||
// gofmt -x source.go > golden.x
|
|
||||||
//
|
|
||||||
var data = []entry{
|
var data = []entry{
|
||||||
entry{ "source1.go", "golden1.go", false },
|
entry{ "source1.go", "golden1.go", false },
|
||||||
entry{ "source1.go", "golden1.x", true },
|
entry{ "source1.go", "golden1.x", true },
|
||||||
|
25
src/pkg/go/printer/testdata/golden1.go
vendored
Normal file
25
src/pkg/go/printer/testdata/golden1.go
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt" // fmt
|
||||||
|
|
||||||
|
const c0 = 0 // zero
|
||||||
|
|
||||||
|
const (
|
||||||
|
c1 = iota; // c1
|
||||||
|
c2 // c2
|
||||||
|
)
|
||||||
|
|
||||||
|
type T struct {
|
||||||
|
a, b, c int // 3 fields
|
||||||
|
}
|
||||||
|
|
||||||
|
var x int // x
|
||||||
|
|
||||||
|
var ()
|
||||||
|
|
||||||
|
func f0() {
|
||||||
|
const pi = 3.14;
|
||||||
|
var s1 struct {}
|
||||||
|
var s2 struct {} = struct {}{};
|
||||||
|
x := pi
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user