(travis) When running under CI make t/storage/quote_names.t respect locking
Peter Rabbitson [Thu, 8 Oct 2015 07:30:06 +0000 (09:30 +0200)]
Without this too many connections are fired at the MySQL and tasty OOMs occur

t/storage/quote_names.t

index bf46122..e667ad3 100644 (file)
@@ -89,7 +89,9 @@ my %dbs = (
 );
 
 # lie that we already locked stuff - the tests below do not touch anything
-$ENV{DBICTEST_LOCK_HOLDER} = -1;
+# unless we are under travis, where the OOM killers reign and things are rough
+$ENV{DBICTEST_LOCK_HOLDER} = -1
+  unless DBICTest::RunMode->is_ci;
 
 # Make sure oracle is tried last - some clients (e.g. 10.2) have symbol
 # clashes with libssl, and will segfault everything coming after them