Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CU_basic_show_failures (0.22 sec)

  1. platforms/native/testing-native/src/main/resources/org/gradle/nativeplatform/test/cunit/tasks/gradle_cunit_main.c

        CU_automated_run_tests();
        failureCount = CU_get_number_of_failures();
    
        // Write test failures to the console
        if (failureCount > 0) {
            printf("\nThere were test failures:");
            CU_basic_show_failures(CU_get_failure_list());
            printf("\n\n");
        }
    
        CU_cleanup_registry();
    
        // TODO Wire a test listener and use it to generate a test event stream and binary results (don't use Automated)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

    /**< Retrieves the current run mode for the basic interface.
     *  @return The current CU_BasicRunMode setting for test
     *              runs using the basic interface.
     */
    
    CU_EXPORT void CU_basic_show_failures(CU_pFailureRecord pFailure);
    /**<
     *  Prints a summary of run failures to stdout.
     *  This is provided for user convenience upon request, and does 
     *  not take into account the current run mode.  The failures are 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top