blob: 291eb01db89f3afb11eda89685e29b276870b9a6 [file] [log] [blame]
// Do not edit. Bootstrap copy of /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/syntax/dumper_test.go
//line /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/compile/internal/syntax/dumper_test.go:1
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package syntax
import (
"os"
"testing"
)
func TestDump(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode")
}
ast, err := ParseFile(*src, nil, nil, 0)
if err != nil {
t.Fatal(err)
}
Fdump(os.Stdout, ast)
}