diff --git a/t/60leaks.t b/t/60leaks.t index 9e62cc5c..b0472d13 100644 --- a/t/60leaks.t +++ b/t/60leaks.t @@ -28,6 +28,8 @@ if (!$have_pt_size) { plan skip_all => "module Proc::ProcessTable does not support size attribute on current platform\n"; } +plan skip_all => 'this test is not supported on OpenBSD platform' if $^O eq 'openbsd'; + my ($dbh, $sth); $dbh = DbiTestConnect($test_dsn, $test_user, $test_password, { RaiseError => 1, PrintError => 1, AutoCommit => 0 }); diff --git a/t/rt86153-reconnect-fail-memory.t b/t/rt86153-reconnect-fail-memory.t index b9c4a99d..733584f3 100644 --- a/t/rt86153-reconnect-fail-memory.t +++ b/t/rt86153-reconnect-fail-memory.t @@ -26,6 +26,8 @@ if (!$have_pt_size) { plan skip_all => "module Proc::ProcessTable does not support size attribute on current platform\n"; } +plan skip_all => 'this test is not supported on OpenBSD platform' if $^O eq 'openbsd'; + my $dbh = DbiTestConnect($test_dsn, $test_user, $test_password, { RaiseError => 1, PrintError => 1, AutoCommit => 1 }); plan tests => 3;