mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
947c14793a
Update all code generation tools, and those that check for license headers to use the new standard header. Also update copyright statement in LICENSE file. Fixes #6865 Signed-off-by: Will Norris <will@tailscale.com>
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/dave/jennifer/jen"
|
|
"github.com/iancoleman/strcase"
|
|
"tailscale.com/tstest/integration/vms"
|
|
)
|
|
|
|
func main() {
|
|
f := jen.NewFile("vms")
|
|
f.Comment("Code generated by tstest/integration/vms/gen/test_codegen.go DO NOT EDIT.")
|
|
|
|
ptr := jen.Op("*")
|
|
|
|
for i, d := range vms.Distros {
|
|
f.Func().
|
|
Id("TestRun" + strcase.ToCamel(d.Name)).
|
|
Params(jen.Id("t").Add(ptr).Qual("testing", "T")).
|
|
BlockFunc(func(g *jen.Group) {
|
|
g.Id("t").Dot("Parallel").Call()
|
|
g.Id("setupTests").Call(jen.Id("t"))
|
|
g.Id("testOneDistribution").Call(jen.Id("t"), jen.Lit(i), jen.Id("Distros").Index(jen.Lit(i)))
|
|
})
|
|
}
|
|
|
|
os.Remove("top_level_test.go")
|
|
fout, err := os.Create("top_level_test.go")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer fout.Close()
|
|
|
|
fout.WriteString("// Copyright (c) Tailscale Inc & AUTHORS\n")
|
|
fout.WriteString("// SPDX-License-Identifier: BSD-3-Clause\n")
|
|
fout.WriteString("\n")
|
|
fout.WriteString("// +build linux\n\n")
|
|
|
|
err = f.Render(fout)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|