This is an automated email from the ASF dual-hosted git repository. borinquenkid pushed a commit to branch 8.0.x-hibernate7 in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 1dd79c0cd08bb3724f2fa07fc2c625ffe64444f9 Author: Walter Duque de Estrada <[email protected]> AuthorDate: Thu Jun 18 18:49:25 2026 -0500 Remove @IgnoreIf(H7) from TCK RLikeSpec — all suites run it The annotation only suppressed the TCK version on H7 in favour of the H7-specific spec, but both use different domain classes so there is no conflict. Removing it lets every datastore suite (including any future GraphQL or simple-map implementation) verify rlike support via the TCK. Co-Authored-By: Claude Sonnet 4.6 <[email protected]> --- .../groovy/org/apache/grails/data/testing/tck/tests/RLikeSpec.groovy | 2 -- 1 file changed, 2 deletions(-) diff --git a/grails-datamapping-tck/src/main/groovy/org/apache/grails/data/testing/tck/tests/RLikeSpec.groovy b/grails-datamapping-tck/src/main/groovy/org/apache/grails/data/testing/tck/tests/RLikeSpec.groovy index cf5924a432..7d0e078044 100644 --- a/grails-datamapping-tck/src/main/groovy/org/apache/grails/data/testing/tck/tests/RLikeSpec.groovy +++ b/grails-datamapping-tck/src/main/groovy/org/apache/grails/data/testing/tck/tests/RLikeSpec.groovy @@ -20,9 +20,7 @@ package org.apache.grails.data.testing.tck.tests import grails.gorm.annotation.Entity import org.apache.grails.data.testing.tck.base.GrailsDataTckSpec -import spock.lang.IgnoreIf -@IgnoreIf({ System.getProperty('hibernate7.gorm.suite') == 'true' }) class RLikeSpec extends GrailsDataTckSpec { void setupSpec() {
