diff --git a/test/tap/groups/groups.json b/test/tap/groups/groups.json index 1def22aa0..5151fdd99 100644 --- a/test/tap/groups/groups.json +++ b/test/tap/groups/groups.json @@ -253,6 +253,13 @@ "test_ffto_mysql_mixed_protocol-t" : [ "legacy-g4","mysql84-g4" ], "test_ffto_mysql_transactions-t" : [ "legacy-g4","mysql84-g4" ], "test_ffto_pgsql-t" : [ "legacy-g4","mysql84-g4" ], + "test_ffto_pgsql_command_types-t" : [ "legacy-g4","mysql84-g4" ], + "test_ffto_pgsql_concurrent-t" : [ "legacy-g4","mysql84-g4" ], + "test_ffto_pgsql_errors-t" : [ "legacy-g4","mysql84-g4" ], + "test_ffto_pgsql_large_resultsets-t" : [ "legacy-g4","mysql84-g4" ], + "test_ffto_pgsql_mixed_protocol-t" : [ "legacy-g4","mysql84-g4" ], + "test_ffto_pgsql_pipeline-t" : [ "legacy-g4","mysql84-g4" ], + "test_ffto_pgsql_stmt_portal-t" : [ "legacy-g4","mysql84-g4" ], "test_filtered_set_statements-t" : [ "legacy-g3","mysql84-g3","mysql-auto_increment_delay_multiplex=0-g3","mysql-multiplexing=false-g3","mysql-query_digests=0-g3","mysql-query_digests_keep_comment=1-g3" ], "test_firewall-t" : [ "legacy-g3","mysql84-g3","mysql-auto_increment_delay_multiplex=0-g3","mysql-multiplexing=false-g3","mysql-query_digests=0-g3","mysql-query_digests_keep_comment=1-g3" ], "test_flagOUT_weight-t" : [ "legacy-g3","mysql84-g3","mysql-auto_increment_delay_multiplex=0-g3","mysql-multiplexing=false-g3","mysql-query_digests=0-g3","mysql-query_digests_keep_comment=1-g3" ], diff --git a/test/tap/tests/Makefile b/test/tap/tests/Makefile index 4fc7c839e..f9d294743 100644 --- a/test/tap/tests/Makefile +++ b/test/tap/tests/Makefile @@ -324,6 +324,12 @@ pgsql-reg_test_5273_bind_parameter_format-t: pgsql-reg_test_5273_bind_parameter_ pgsql-reg_test_5300_threshold_resultset_deadlock-t: pgsql-reg_test_5300_threshold_resultset_deadlock-t.cpp pg_lite_client.cpp $(TAP_LDIR)/libtap.so $(CXX) $< pg_lite_client.cpp $(IDIRS) $(LDIRS) $(OPT) $(MYLIBS) $(STATIC_LIBS) -o $@ +test_ffto_pgsql_pipeline-t: test_ffto_pgsql_pipeline-t.cpp pg_lite_client.cpp $(TAP_LDIR)/libtap.so + $(CXX) $< pg_lite_client.cpp $(IDIRS) $(LDIRS) $(OPT) $(MYLIBS) $(STATIC_LIBS) -o $@ + +test_ffto_pgsql_stmt_portal-t: test_ffto_pgsql_stmt_portal-t.cpp pg_lite_client.cpp $(TAP_LDIR)/libtap.so + $(CXX) $< pg_lite_client.cpp $(IDIRS) $(LDIRS) $(OPT) $(MYLIBS) $(STATIC_LIBS) -o $@ + ### clean targets