Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for operatorsTest (0.23 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/completeCUnitExample.out

      1. /home/user/gradle/samples/src/operatorsTest/c/test_plus.c:6  - plus(0, -2) == -2
      2. /home/user/gradle/samples/src/operatorsTest/c/test_plus.c:7  - plus(2, 2) == 4
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':runOperatorsTestFailingCUnitExe'.
    > There were failing tests. See the results at: file:///home/user/gradle/samples/build/test-results/operatorsTest/failing/
    
    * Try:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 671 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/dependentComponentsReportAll.out

    |    \--- operatorsTest:failingCUnitExe (t)
    +--- operators:passingSharedLibrary
    \--- operators:passingStaticLibrary
         \--- operatorsTest:passingCUnitExe (t)
    
    operatorsTest - Components that depend on Cunit test suite 'operatorsTest'
    +--- operatorsTest:failingCUnitExe (t)
    \--- operatorsTest:passingCUnitExe (t)
    
    (t) - Test suite binary
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 704 bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestSamplesIntegrationTest.groovy

                    ":installOperatorsTestPassingGoogleTestExe", ":runOperatorsTestPassingGoogleTestExe"
    
            and:
            def passingResults = new GoogleTestTestResults(googleTest.dir.file("build/test-results/operatorsTest/passing/test_detail.xml"))
            passingResults.suiteNames == ['OperatorTests']
            passingResults.suites['OperatorTests'].passingTests == ['test_minus', 'test_plus']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitSamplesIntegrationTest.groovy

                                  ":installOperatorsTestPassingCUnitExe", ":runOperatorsTestPassingCUnitExe"
    
            and:
            def passingResults = new CUnitTestResults(cunit.dir.file("build/test-results/operatorsTest/passing/CUnitAutomated-Results.xml"))
            passingResults.suiteNames == ['operator tests']
            passingResults.suites['operator tests'].passingTests == ['test_plus', 'test_minus']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/build.gradle

                }
            }
        }
    // tag::terse-example[]
        components {
            operators(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            operatorsTest(CUnitTestSuiteSpec) {
                testing $.components.operators
            }
        }
    }
    // end::terse-example[]
    // tag::configure-test-binary[]
    model {
        binaries {
            withType(CUnitTestSuiteBinarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/build.gradle

                    }
                }
            }
        }
        components {
            operators(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            operatorsTest(GoogleTestTestSuiteSpec) {
                testing $.components.operators
            }
        }
    }
    // tag::configure-test-binary[]
    model {
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Registering CUnit tests
    
    [source.multi-language-sample,c]
    .suite_operators.c
    ----
    include::{snippetsPath}/native-binaries/cunit/groovy/src/operatorsTest/c/suite_operators.c[]
    ----
    
    NOTE: Due to this mechanism, your CUnit sources may not contain a `main` method since this will clash with the method provided by Gradle.
    
    [[sec:building_cunit_executables]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/operator_test.go

    Xiaopeng Han <******@****.***> 1693318533 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top