Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for shouldRunTest (0.15 sec)

  1. src/cmd/dist/test.go

    				log.Printf("Failed logging metadata: %v", err)
    			} else {
    				fatalf("Failed logging metadata: %v", err)
    			}
    		}
    	}
    
    	var anyIncluded, someExcluded bool
    	for _, dt := range t.tests {
    		if !t.shouldRunTest(dt.name) {
    			someExcluded = true
    			continue
    		}
    		anyIncluded = true
    		dt := dt // dt used in background after this iteration
    		if err := dt.fn(&dt); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
      // Returns true if the given test should run.
      static bool ShouldRunTest(const TestInfo* test_info) {
        return test_info->should_run();
      }
    
      // Shuffles the tests in this test case.
      void ShuffleTests(internal::Random* random);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      static bool TestReportable(const TestInfo* test_info) {
        return test_info->is_reportable();
      }
    
      // Returns true if the given test should run.
      static bool ShouldRunTest(const TestInfo* test_info) {
        return test_info->should_run();
      }
    
      // Shuffles the tests in this test case.
      void ShuffleTests(internal::Random* random);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top