blob: a356f5cf5546266fbc2100ee0c6a8745a4bab474 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2020 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package main
import (
"testing"
"github.com/google/syzkaller/pkg/osutil"
"golang.org/x/tools/go/analysis/analysistest"
)
func TestLinter(t *testing.T) {
analysistest.Run(t, osutil.Abs("testdata"), SyzAnalyzer, "lintertest")
}
|