From ed41d7b5902adbd7ceeb34a5c56611721b6709d7 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Tue, 4 Feb 2020 10:55:38 -0500 Subject: [PATCH] e2e: rename linux runner to avoid implicit build tag (#7070) Go implicitly treats files ending with `_linux.go` as build tagged for Linux only. This broke the e2e provisioning framework on macOS once we tried importing it into the `e2e/consulacls` module. --- e2e/framework/provisioning/{runner_linux.go => linux_runner.go} | 0 e2e/framework/provisioning/{runner_ssh.go => ssh_runner.go} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename e2e/framework/provisioning/{runner_linux.go => linux_runner.go} (100%) rename e2e/framework/provisioning/{runner_ssh.go => ssh_runner.go} (100%) diff --git a/e2e/framework/provisioning/runner_linux.go b/e2e/framework/provisioning/linux_runner.go similarity index 100% rename from e2e/framework/provisioning/runner_linux.go rename to e2e/framework/provisioning/linux_runner.go diff --git a/e2e/framework/provisioning/runner_ssh.go b/e2e/framework/provisioning/ssh_runner.go similarity index 100% rename from e2e/framework/provisioning/runner_ssh.go rename to e2e/framework/provisioning/ssh_runner.go