Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testBinary (0.23 sec)

  1. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

            project.testComponent.binaries.size() == 1
            def testBinary = project.testComponent.binaries[0]
            testBinary instanceof CppExecutable
            testBinary.name == 'testExecutable'
            testBinary.variantName == 'debug'
            testBinary.baseName == 'coreTest'
            testBinary.compilationDetails.sources.sourceFile as Set == [src1, src2] as Set
            testBinary.compilationDetails.headerDirs == [headerDir] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            release.artifacts.size() == 1
        }
    
        private ComponentWithOutputs binary(String name, String taskName) {
            def outputs = fileCollection(taskName)
            def binary = Stub(TestBinary)
            binary.name >> name
            binary.names >> Names.of(name)
            binary.outputs >> outputs
            return binary
        }
    
        private FileCollection fileCollection(String taskName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            null       | "binary"   | "compile" | null   | "compileBinary"
            null       | "binary"   | "compile" | "java" | "compileBinaryJava"
            "test"     | "binary"   | null      | null   | "testBinary"
            "test"     | "binary"   | "compile" | null   | "compileTestBinary"
            "test"     | "binary"   | "compile" | "java" | "compileTestBinaryJava"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/test.go

    		}
    		if pxtestNeedsPtest {
    			pxtest.Internal.Imports = append(pxtest.Internal.Imports, ptest)
    		}
    	}
    
    	// Arrange for testing.Testing to report true.
    	ldflags := append(p.Internal.Ldflags, "-X", "testing.testBinary=1")
    	gccgoflags := append(p.Internal.Gccgoflags, "-Wl,--defsym,testing.gccgoTestBinary=1")
    
    	// Build main package.
    	pmain = &Package{
    		PackagePublic: PackagePublic{
    			Name:       "main",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top