Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for useConventionalSourceLocations (0.78 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

            succeeds 'tasks'
    
            then:
            noExceptionThrown()
        }
    
        private useConventionalSourceLocations() {
            app.library.writeSources(file("src/hello"))
            app.googleTestTests.writeSources(file("src/helloTest"))
        }
    
        private useFailingTestSources() {
            useConventionalSourceLocations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitDependentComponentsIntegrationSpec.groovy

                            lib library: "cunit", linkage: "static"
                        }
                    }
                }
            """.stripIndent()
        }
    
        private useConventionalSourceLocations() {
            app.library.writeSources(file("src/hello"))
            app.cunitTests.writeSources(file("src/helloTest"))
        }
    
        private def getCunitLibName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

            then:
            executed ':customHelloCheck', ':runHelloTestCUnitExe'
        }
    
        private useConventionalSourceLocations() {
            app.library.writeSources(file("src/hello"))
            app.cunitTests.writeSources(file("src/helloTest"))
        }
    
        private useFailingTestSources() {
            useConventionalSourceLocations()
            file("src/hello/c/sum.c").text = file("src/hello/c/sum.c").text.replace("return a + b;", "return 2;")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestDependentComponentsIntegrationSpec.groovy

        }
    
        private useConventionalSourceLocations() {
            app.library.writeSources(file("src/hello"))
            app.googleTestTests.writeSources(file("src/helloTest"))
        }
    
        @ToBeFixedForConfigurationCache
        def "buildDependentsHello assemble and check all hello binaries"() {
            given:
            useConventionalSourceLocations()
            useStandardConfig()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top