From bb10a51b39e8b67b0465aff5595b7e46060b6e65 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 23 Nov 2018 16:05:09 +0000 Subject: [PATCH] test_all: limit to go1.11 so the template used is supported --- fstest/test_all/clean.go | 2 +- fstest/test_all/config.go | 2 +- fstest/test_all/report.go | 2 +- fstest/test_all/run.go | 2 +- fstest/test_all/run_test.go | 2 ++ fstest/test_all/test_all.go | 2 +- 6 files changed, 7 insertions(+), 5 deletions(-) diff --git a/fstest/test_all/clean.go b/fstest/test_all/clean.go index c4a980732..e18d02eb6 100644 --- a/fstest/test_all/clean.go +++ b/fstest/test_all/clean.go @@ -1,6 +1,6 @@ // Clean the left over test files -// +build go1.10 +// +build go1.11 package main diff --git a/fstest/test_all/config.go b/fstest/test_all/config.go index 8265ce4fc..8f2897578 100644 --- a/fstest/test_all/config.go +++ b/fstest/test_all/config.go @@ -1,6 +1,6 @@ // Config handling -// +build go1.10 +// +build go1.11 package main diff --git a/fstest/test_all/report.go b/fstest/test_all/report.go index 5b611cc3e..74eba3a14 100644 --- a/fstest/test_all/report.go +++ b/fstest/test_all/report.go @@ -1,4 +1,4 @@ -// +build go1.10 +// +build go1.11 package main diff --git a/fstest/test_all/run.go b/fstest/test_all/run.go index 0d12aa15c..be787d5a1 100644 --- a/fstest/test_all/run.go +++ b/fstest/test_all/run.go @@ -1,6 +1,6 @@ // Run a test -// +build go1.10 +// +build go1.11 package main diff --git a/fstest/test_all/run_test.go b/fstest/test_all/run_test.go index b51ea3313..57bbab735 100644 --- a/fstest/test_all/run_test.go +++ b/fstest/test_all/run_test.go @@ -1,3 +1,5 @@ +// +build go1.11 + package main import ( diff --git a/fstest/test_all/test_all.go b/fstest/test_all/test_all.go index 2bf7dcbda..b8a462f96 100644 --- a/fstest/test_all/test_all.go +++ b/fstest/test_all/test_all.go @@ -1,4 +1,4 @@ -// +build go1.10 +// +build go1.11 // Run tests for all the remotes. Run this with package names which // need integration testing.