Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ConfigurationCacheDebugLogIntegrationTest (0.48 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

    import static org.gradle.internal.cc.impl.fingerprint.ConfigurationCacheFingerprint.GradleEnvironment
    import static org.gradle.internal.cc.impl.fingerprint.ProjectSpecificFingerprint.ProjectFingerprint
    
    class ConfigurationCacheDebugLogIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "logs categorized open/close frame events for state and fingerprint files"() {
            given:
            createDirs("sub")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildIntegTestConfigurationCacheSmokeTest.groovy

            def supportedTasks = [
                ":configuration-cache:embeddedIntegTest",
                "--tests=org.gradle.internal.cc.impl.ConfigurationCacheDebugLogIntegrationTest"
            ]
    
            when:
            configurationCacheRun supportedTasks, 0
    
            then:
            result.assertConfigurationCacheStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top