Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for Assembles (0.15 sec)

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

            assertStateStored()
            result.assertTasksExecuted(":compileJava", ":processResources", ":classes", ":jar", ":compileTestJava", ":processTestResources", ":testClasses", ":test", ":assemble", ":check", ":build")
            result.assertTasksNotSkipped(":jar", ":assemble", ":build")
            def jarFile = file("build/libs/somelib.jar")
            new ZipTestFixture(jarFile).hasDescendants("META-INF/MANIFEST.MF")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

                apply plugin: 'swift-library'
            """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(":compileDebugSwift", ":linkDebug", ":assemble")
            // TODO - should skip the task as NO-SOURCE
            result.assertTasksSkipped(":compileDebugSwift", ":linkDebug", ":assemble")
        }
    
        def "build fails when compilation fails"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            buildFile << """
                apply plugin: 'cpp-library'
            """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(tasks.debug.allToLink, ":assemble")
            // TODO - should skip the task as NO-SOURCE
            result.assertTasksSkipped(tasks.debug.allToLink, ":assemble")
        }
    
        @ToBeFixedForConfigurationCache
        def "build fails when compilation fails"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            settingsFile << """
            rootProject.name = 'empty-project'
            """
            buildFile << """
                apply plugin: 'ear'
            """
    
            when:
            succeeds 'assemble'
            succeeds 'assemble'
    
            then:
            def ear = new JarTestFixture(file('build/libs/empty-project.ear'))
            ear.assertContainsFile("META-INF/MANIFEST.MF")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

                            }
                        }
                    }
                }
            """
    
            expect:
            succeeds('assemble')
    
            when:
            succeeds('clean', 'assemble')
    
            then:
            // Git repo is cloned
            def gitCheckout = checkoutDir(repo.name, commit.id.name, repo.id)
            gitCheckout.file('.git').assertExists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  6. .teamcity/performance-tests-ci.json

        "groups" : [ {
          "testProject" : "largeJavaMultiProjectNoBuildSrc",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.java.JavaConfigurationCachePerformanceTest.assemble loading configuration cache state with hot daemon",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            buildFile << """
                apply plugin: 'cpp-application'
            """
    
            expect:
            succeeds "assemble"
            result.assertTasksExecuted(tasks.debug.allToInstall, ':assemble')
            // TODO - should skip the task as NO-SOURCE
            result.assertTasksSkipped(tasks.debug.allToInstall, ':assemble')
        }
    
        @ToBeFixedForConfigurationCache
        def "build fails when compilation fails"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

        }
    
        def addLifecycleTasks(BuildTestFile build) {
            build.buildFile << """
                tasks.maybeCreate("assemble")
                tasks.assemble.dependsOn gradle.includedBuilds*.task(':assemble')
            """
        }
    
        def applyPlugin(BuildTestFile build, boolean pluginsBlock = false, boolean withVersion = true) {
            if (pluginsBlock && withVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            }
            another(NativeLibrarySpec) {
                binaries.all { buildable = false }
            }
        }
    }
    """
            when:
            fails "assemble"
    
            then:
            failureDescriptionContains("Execution failed for task ':assemble'.")
            failure.assertHasCause("""No buildable binaries found:
      - shared library 'another:sharedLibrary': Disabled by user
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/endtoend_test.go

    	"fmt"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    	"testing"
    
    	"cmd/asm/internal/lex"
    	"cmd/internal/obj"
    )
    
    // An end-to-end test for the assembler: Do we print what we parse?
    // Output is generated by, in effect, turning on -S and comparing the
    // result against a golden file.
    
    func testEndToEnd(t *testing.T, goarch, file string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top