summaryrefslogtreecommitdiff
path: root/test/run.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/run.go')
-rw-r--r--test/run.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/run.go b/test/run.go
index 2b26a5b01..e3c305690 100644
--- a/test/run.go
+++ b/test/run.go
@@ -314,6 +314,9 @@ func (t *test) run() {
return
}
for _, gofile := range files {
+ if filepath.Ext(gofile.Name()) != ".go" {
+ continue
+ }
afile := strings.Replace(gofile.Name(), ".go", "."+letter, -1)
out, err := runcmd("go", "tool", gc, "-e", "-D.", "-I.", "-o", afile, filepath.Join(longdir, gofile.Name()))
if err != nil {