Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for usingNativeTools (0.4 sec)

  1. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

                zipFile.close()
            }
        }
    
        protected TestFile unpackDistribution(type = getDistributionLabel(), TestFile into = testDirectory) {
            TestFile zip = getZip(type)
            zip.usingNativeTools().unzipTo(into)
            assert into.listFiles().size() == 1
            into.listFiles()[0]
        }
    
        protected TestFile getZip(String type = getDistributionLabel()) {
            switch (type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            when:
            runViaUnixStartScriptWithJavaHome(testJavaHome.absolutePath)
    
            then:
            outputContains('Hello World!')
    
            cleanup:
            testJavaHome.usingNativeTools().deleteDir() //remove symlink
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        def "java PID equals script PID"() {
            given:
            succeeds('installDist')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            this(new File(uri));
        }
    
        public TestFile(String path) {
            this(new File(path));
        }
    
        public TestFile(URL url) {
            this(toUri(url));
        }
    
        public TestFile usingNativeTools() {
            useNativeTools = true;
            return this;
        }
    
        public TestFile java(@Language("java") String src) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top