Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for compileTestCpp (0.37 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-task-graph.dot

      tripleDots [style="dashed,filled", fillcolor=grey, label="..."]
    
      // Ensure ordering
      compileTestCpp -> compileDebugCpp -> clean [style=invis]
      {rank=same compileDebugCpp compileTestCpp clean}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

            when:
            project.pluginManager.apply(CppUnitTestPlugin)
            project.evaluate()
    
            then:
            def compileCpp = project.tasks.compileTestCpp
            compileCpp instanceof CppCompile
            compileCpp.source.files == [src] as Set
            compileCpp.objectFileDir.get().asFile == projectDir.file("build/obj/test")
            compileCpp.debuggable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestDependenciesIntegrationTest.groovy

        }
    
        @Override
        protected String getAssembleDevBinaryTask() {
            return ":installTest"
        }
    
        @Override
        protected List<String> getAssembleDevBinaryTasks() {
            return [":compileTestCpp", ":linkTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [":lib:compileDebugCpp", ":lib:linkDebug"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithLibraryDependenciesIntegrationTest.groovy

        }
    
        @Override
        protected String getProductionComponentDsl() {
            return "library"
        }
    
        @Override
        protected List<String> getRunTestTasks() {
            return [":compileDebugCpp", ":compileTestCpp", ":linkTest", ":installTest", ":runTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [":lib:compileDebugCpp", ":lib:linkDebug"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    The following diagrams show the relationship between variant-dependent tasks.
    
    .{cpp} Unit Test Plugin variant-dependent task graph
    image::cpp-unit-test-variant-task-graph.png[]
    
    `compileTest__Variant__Cpp` (e.g. `compileTestCpp`)  - link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html[CppCompile]::
    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles {cpp} source files using the selected compiler.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

            where:
            name        | taskName              | objDir
            "main"      | "compileCpp"          | "main"
            "mainDebug" | "compileDebugCpp"     | "main/debug"
            "test"      | "compileTestCpp"      | "test"
            "testDebug" | "compileTestDebugCpp" | "test/debug"
        }
    
        def "adds link and install task for executable"() {
            def baseName = project.objects.property(String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            testBinary.compilationDetails.macroUndefines.empty
            testBinary.compilationDetails.additionalArgs.empty
            testBinary.compilationDetails.compileTask.path == ":compileTestCpp"
            testBinary.compilationDetails.compileTask.name == "compileTestCpp"
            testBinary.linkageDetails.linkTask.path == ":linkTest"
            testBinary.linkageDetails.linkTask.name == "linkTest"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top