From 6a39b12f4efebbc2fc5702a0d21444af23caefa9 Mon Sep 17 00:00:00 2001 From: Carlos Salguero Date: Tue, 29 May 2018 17:41:37 -0300 Subject: [PATCH] PT-1554 Test for 5.6 --- t/pt-online-schema-change/pt-1455.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/pt-online-schema-change/pt-1455.t b/t/pt-online-schema-change/pt-1455.t index 20f450d6..83665085 100644 --- a/t/pt-online-schema-change/pt-1455.t +++ b/t/pt-online-schema-change/pt-1455.t @@ -21,8 +21,10 @@ use Sandbox; use SqlModes; use File::Temp qw/ tempdir /; -if (!$ENV{PERCONA_SLOW_BOX}) { +if ($ENV{PERCONA_SLOW_BOX}) { plan skip_all => 'This test needs a fast machine'; +} elsif ($sandbox_version lt '5.7') { + plan skip_all => 'This tests needs MySQL 5.7+'; } else { plan tests => 3; }