@@ -441,6 +441,86 @@ tasks.register<Test>("test-aurora-pg-rw-splitting-performance") {
441441 }
442442}
443443
444+ tasks.register<Test >(" test-aurora-mysql-performance" ) {
445+ group = " verification"
446+ filter.includeTestsMatching(" integration.host.TestRunner.runMySQLPerfTests" )
447+ doFirst {
448+ systemProperty(" test-no-docker" , " true" )
449+ systemProperty(" test-no-multi-az-cluster" , " true" )
450+ systemProperty(" test-no-multi-az-instance" , " true" )
451+ systemProperty(" test-no-aurora-limitless" , " true" )
452+ systemProperty(" test-no-iam" , " true" )
453+ systemProperty(" test-no-secrets-manager" , " true" )
454+ systemProperty(" test-no-pg-driver" , " true" )
455+ systemProperty(" test-no-pg-engine" , " true" )
456+ systemProperty(" test-no-mariadb-driver" , " true" )
457+ systemProperty(" test-no-mariadb-engine" , " true" )
458+ systemProperty(" test-no-instances-1" , " true" )
459+ systemProperty(" test-no-instances-2" , " true" )
460+ systemProperty(" test-no-bg" , " true" )
461+ }
462+ }
463+
464+ tasks.register<Test >(" test-aurora-pg-performance" ) {
465+ group = " verification"
466+ filter.includeTestsMatching(" integration.host.TestRunner.runPGPerfTests" )
467+ doFirst {
468+ systemProperty(" test-no-docker" , " true" )
469+ systemProperty(" test-no-multi-az-cluster" , " true" )
470+ systemProperty(" test-no-multi-az-instance" , " true" )
471+ systemProperty(" test-no-aurora-limitless" , " true" )
472+ systemProperty(" test-no-iam" , " true" )
473+ systemProperty(" test-no-secrets-manager" , " true" )
474+ systemProperty(" test-no-mysql-driver" , " true" )
475+ systemProperty(" test-no-mysql-engine" , " true" )
476+ systemProperty(" test-no-mariadb-driver" , " true" )
477+ systemProperty(" test-no-mariadb-engine" , " true" )
478+ systemProperty(" test-no-instances-1" , " true" )
479+ systemProperty(" test-no-instances-2" , " true" )
480+ systemProperty(" test-no-bg" , " true" )
481+ }
482+ }
483+
484+ tasks.register<Test >(" test-aurora-mysql-advanced-performance" ) {
485+ group = " verification"
486+ filter.includeTestsMatching(" integration.host.TestRunner.runMySQLAdvancedPerfTests" )
487+ doFirst {
488+ systemProperty(" test-no-docker" , " true" )
489+ systemProperty(" test-no-multi-az-cluster" , " true" )
490+ systemProperty(" test-no-multi-az-instance" , " true" )
491+ systemProperty(" test-no-aurora-limitless" , " true" )
492+ systemProperty(" test-no-iam" , " true" )
493+ systemProperty(" test-no-secrets-manager" , " true" )
494+ systemProperty(" test-no-pg-driver" , " true" )
495+ systemProperty(" test-no-pg-engine" , " true" )
496+ systemProperty(" test-no-mariadb-driver" , " true" )
497+ systemProperty(" test-no-mariadb-engine" , " true" )
498+ systemProperty(" test-no-instances-1" , " true" )
499+ systemProperty(" test-no-instances-2" , " true" )
500+ systemProperty(" test-no-bg" , " true" )
501+ }
502+ }
503+
504+ tasks.register<Test >(" test-aurora-pg-advanced-performance" ) {
505+ group = " verification"
506+ filter.includeTestsMatching(" integration.host.TestRunner.runPGAdvancedPerfTests" )
507+ doFirst {
508+ systemProperty(" test-no-docker" , " true" )
509+ systemProperty(" test-no-multi-az-cluster" , " true" )
510+ systemProperty(" test-no-multi-az-instance" , " true" )
511+ systemProperty(" test-no-aurora-limitless" , " true" )
512+ systemProperty(" test-no-iam" , " true" )
513+ systemProperty(" test-no-secrets-manager" , " true" )
514+ systemProperty(" test-no-mysql-driver" , " true" )
515+ systemProperty(" test-no-mysql-engine" , " true" )
516+ systemProperty(" test-no-mariadb-driver" , " true" )
517+ systemProperty(" test-no-mariadb-engine" , " true" )
518+ systemProperty(" test-no-instances-1" , " true" )
519+ systemProperty(" test-no-instances-2" , " true" )
520+ systemProperty(" test-no-bg" , " true" )
521+ }
522+ }
523+
444524tasks.register<Test >(" in-container" ) {
445525 filter.excludeTestsMatching(" software.*" ) // exclude unit tests
446526
0 commit comments