diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-17 11:16:13 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-17 11:16:13 +0100 |
commit | ef4458af0741dd18a407eff47ede481c816e8f07 (patch) | |
tree | 4232e7417004f49b782c05a7406b4cc2f1ed845a /mysql-test/include/have_example_plugin.inc | |
parent | 49ce7daa947bb156daf92cd101495cfe33993afa (diff) | |
download | mariadb-git-ef4458af0741dd18a407eff47ede481c816e8f07.tar.gz |
Tests: many if/while expresissons simplified after 57276
Diffstat (limited to 'mysql-test/include/have_example_plugin.inc')
-rw-r--r-- | mysql-test/include/have_example_plugin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/have_example_plugin.inc b/mysql-test/include/have_example_plugin.inc index 3a667d2e21a..8920399555d 100644 --- a/mysql-test/include/have_example_plugin.inc +++ b/mysql-test/include/have_example_plugin.inc @@ -8,7 +8,7 @@ if (`SELECT @@have_dynamic_loading != 'YES'`) { # # Check if the variable EXAMPLE_PLUGIN is set # -if (`SELECT LENGTH('$EXAMPLE_PLUGIN') = 0`) { +if (!$EXAMPLE_PLUGIN) { --skip Example plugin requires the environment variable \$EXAMPLE_PLUGIN to be set (normally done by mtr) } |