Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for no_such_command (0.1 sec)

  1. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            e.message.contains "finished with non-zero exit value 72"
        }
    
        void "start fails when process cannot be started"() {
            def execHandle = handle().setDisplayName("awesome").executable("no_such_command").build()
    
            when:
            execHandle.start()
    
            then:
            def e = thrown(ExecException)
            e.message == "A problem occurred starting process 'awesome'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
Back to top