Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PLUS_BROKEN (0.1 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operators/cpp/plus.cpp

    #include "operators.h"
    
    int plus(int a, int b) {
    #ifdef PLUS_BROKEN
        return 2;
    #else
        return a + b;
    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/src/operators/c/plus.c

    #include "operators.h"
    
    int plus(int a, int b) {
    #ifdef PLUS_BROKEN
        return 2;
    #else
        return a + b;
    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/build.gradle

    model {
        binaries {
            withType(CUnitTestSuiteBinarySpec) {
                lib library: "cunit", linkage: "static"
    
                if (flavor == flavors.failing) {
                    cCompiler.define "PLUS_BROKEN"
                }
            }
        }
    }
    // end::configure-test-binary[]
    // end::complete-example[]
    
    def findCUnitLibForPlatform(Platform platform) {
        if (platform.operatingSystem.windows) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/build.gradle

    model {
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
                lib library: "googleTest", linkage: "static"
    
                if (flavor == flavors.failing) {
                    cppCompiler.define "PLUS_BROKEN"
                }
    
                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top