Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for agentWasNotApplied (0.16 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TapiAgentInstrumentationCrossVersionSpec.groovy

            then:
            agentWasNotApplied()
        }
    
        private void runDumpTaskWithTapi() {
            withConnection {
                buildOutput = withBuild {
                    it.forTasks("hello")
                }.stdout.toString()
            }
        }
    
        private void agentWasApplied() {
            agentStatusWas(true)
        }
    
        private void agentWasNotApplied() {
            agentStatusWas(false)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

        def "agent is not applied if disabled in the command-line"() {
            given:
            withoutAgent()
            withDumpAgentStatusTask()
    
            when:
            succeeds()
    
            then:
            agentWasNotApplied()
        }
    
        def "agent is applied to the daemon process running the build"() {
            given:
            withAgent()
            withDumpAgentStatusTask()
    
            when:
            succeeds()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top