Skip to content

Commit 020d3ed

Browse files
committed
Changed warnings to errors for TAP tests [skip ci]
1 parent 1e9e355 commit 020d3ed

38 files changed

+38
-38
lines changed

test/t/001_ivfflat_wal.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Test generic xlog record work for ivfflat index replication.
44
use strict;
5-
use warnings;
5+
use warnings FATAL => 'all';
66
use PostgreSQL::Test::Cluster;
77
use PostgreSQL::Test::Utils;
88
use Test::More;

test/t/002_ivfflat_vacuum.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/003_ivfflat_vector_build_recall.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/004_ivfflat_vector_insert_recall.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/005_ivfflat_query_recall.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/006_ivfflat_lists.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/007_ivfflat_inserts.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/008_ivfflat_centers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/009_ivfflat_filtering.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use strict;
2-
use warnings;
2+
use warnings FATAL => 'all';
33
use PostgreSQL::Test::Cluster;
44
use PostgreSQL::Test::Utils;
55
use Test::More;

test/t/010_hnsw_wal.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Test generic xlog record work for hnsw index replication.
44
use strict;
5-
use warnings;
5+
use warnings FATAL => 'all';
66
use PostgreSQL::Test::Cluster;
77
use PostgreSQL::Test::Utils;
88
use Test::More;

0 commit comments

Comments
 (0)