@@ -213,6 +213,21 @@ static const char* GetDefaultFilter() {
213
213
return kUniversalFilter ;
214
214
}
215
215
216
+ // Bazel passes in the argument to '--test_runner_fail_fast' via the
217
+ // TESTBRIDGE_TEST_RUNNER_FAIL_FAST environment variable.
218
+ static bool GetDefaultFailFast () {
219
+ const char * const testbridge_test_runner_fail_fast =
220
+ internal::posix::GetEnv (" TESTBRIDGE_TEST_RUNNER_FAIL_FAST" );
221
+ if (testbridge_test_runner_fail_fast != nullptr ) {
222
+ return strcmp (testbridge_test_runner_fail_fast, " 1" ) == 0 ;
223
+ }
224
+ return false ;
225
+ }
226
+
227
+ GTEST_DEFINE_bool_ (
228
+ fail_fast, internal::BoolFromGTestEnv(" fail_fast" , GetDefaultFailFast()),
229
+ " True if and only if a test failure should stop further test execution." );
230
+
216
231
GTEST_DEFINE_bool_ (
217
232
also_run_disabled_tests,
218
233
internal::BoolFromGTestEnv (" also_run_disabled_tests" , false ),
@@ -2863,6 +2878,28 @@ void TestInfo::Run() {
2863
2878
impl->set_current_test_info (nullptr );
2864
2879
}
2865
2880
2881
+ // Skip and records a skipped test result for this object.
2882
+ void TestInfo::Skip () {
2883
+ if (!should_run_) return ;
2884
+
2885
+ internal::UnitTestImpl* const impl = internal::GetUnitTestImpl ();
2886
+ impl->set_current_test_info (this );
2887
+
2888
+ TestEventListener* repeater = UnitTest::GetInstance ()->listeners ().repeater ();
2889
+
2890
+ // Notifies the unit test event listeners that a test is about to start.
2891
+ repeater->OnTestStart (*this );
2892
+
2893
+ const TestPartResult test_part_result =
2894
+ TestPartResult (TestPartResult::kSkip , this ->file (), this ->line (), " " );
2895
+ impl->GetTestPartResultReporterForCurrentThread ()->ReportTestPartResult (
2896
+ test_part_result);
2897
+
2898
+ // Notifies the unit test event listener that a test has just finished.
2899
+ repeater->OnTestEnd (*this );
2900
+ impl->set_current_test_info (nullptr );
2901
+ }
2902
+
2866
2903
// class TestSuite
2867
2904
2868
2905
// Gets the number of successful tests in this test suite.
@@ -2975,6 +3012,12 @@ void TestSuite::Run() {
2975
3012
start_timestamp_ = internal::GetTimeInMillis ();
2976
3013
for (int i = 0 ; i < total_test_count (); i++) {
2977
3014
GetMutableTestInfo (i)->Run ();
3015
+ if (GTEST_FLAG (fail_fast) && GetMutableTestInfo (i)->result ()->Failed ()) {
3016
+ for (int j = i + 1 ; j < total_test_count (); j++) {
3017
+ GetMutableTestInfo (j)->Skip ();
3018
+ }
3019
+ break ;
3020
+ }
2978
3021
}
2979
3022
elapsed_time_ = internal::GetTimeInMillis () - start_timestamp_;
2980
3023
@@ -2992,6 +3035,36 @@ void TestSuite::Run() {
2992
3035
impl->set_current_test_suite (nullptr );
2993
3036
}
2994
3037
3038
+ // Skips all tests under this TestSuite.
3039
+ void TestSuite::Skip () {
3040
+ if (!should_run_) return ;
3041
+
3042
+ internal::UnitTestImpl* const impl = internal::GetUnitTestImpl ();
3043
+ impl->set_current_test_suite (this );
3044
+
3045
+ TestEventListener* repeater = UnitTest::GetInstance ()->listeners ().repeater ();
3046
+
3047
+ // Call both legacy and the new API
3048
+ repeater->OnTestSuiteStart (*this );
3049
+ // Legacy API is deprecated but still available
3050
+ #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI
3051
+ repeater->OnTestCaseStart (*this );
3052
+ #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI
3053
+
3054
+ for (int i = 0 ; i < total_test_count (); i++) {
3055
+ GetMutableTestInfo (i)->Skip ();
3056
+ }
3057
+
3058
+ // Call both legacy and the new API
3059
+ repeater->OnTestSuiteEnd (*this );
3060
+ // Legacy API is deprecated but still available
3061
+ #ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI
3062
+ repeater->OnTestCaseEnd (*this );
3063
+ #endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI
3064
+
3065
+ impl->set_current_test_suite (nullptr );
3066
+ }
3067
+
2995
3068
// Clears the results of all tests in this test suite.
2996
3069
void TestSuite::ClearResult () {
2997
3070
ad_hoc_test_result_.Clear ();
@@ -5523,6 +5596,13 @@ bool UnitTestImpl::RunAllTests() {
5523
5596
for (int test_index = 0 ; test_index < total_test_suite_count ();
5524
5597
test_index++) {
5525
5598
GetMutableSuiteCase (test_index)->Run ();
5599
+ if (GTEST_FLAG (fail_fast) &&
5600
+ GetMutableSuiteCase (test_index)->Failed ()) {
5601
+ for (int j = test_index + 1 ; j < total_test_suite_count (); j++) {
5602
+ GetMutableSuiteCase (j)->Skip ();
5603
+ }
5604
+ break ;
5605
+ }
5526
5606
}
5527
5607
}
5528
5608
@@ -6127,31 +6207,31 @@ static const char kColorEncodedHelpMessage[] =
6127
6207
static bool ParseGoogleTestFlag (const char * const arg) {
6128
6208
return ParseBoolFlag (arg, kAlsoRunDisabledTestsFlag ,
6129
6209
>EST_FLAG (also_run_disabled_tests)) ||
6130
- ParseBoolFlag (arg, kBreakOnFailureFlag ,
6131
- >EST_FLAG (break_on_failure)) ||
6132
- ParseBoolFlag (arg, kCatchExceptionsFlag ,
6133
- >EST_FLAG (catch_exceptions)) ||
6134
- ParseStringFlag (arg, kColorFlag , >EST_FLAG (color)) ||
6135
- ParseStringFlag (arg, kDeathTestStyleFlag ,
6136
- >EST_FLAG (death_test_style)) ||
6137
- ParseBoolFlag (arg, kDeathTestUseFork ,
6138
- >EST_FLAG (death_test_use_fork)) ||
6139
- ParseStringFlag (arg, kFilterFlag , >EST_FLAG (filter )) ||
6140
- ParseStringFlag (arg, kInternalRunDeathTestFlag ,
6141
- & GTEST_FLAG (internal_run_death_test)) ||
6142
- ParseBoolFlag (arg, kListTestsFlag , >EST_FLAG (list_tests )) ||
6143
- ParseStringFlag (arg, kOutputFlag , >EST_FLAG (output )) ||
6144
- ParseBoolFlag (arg, kPrintTimeFlag , >EST_FLAG (print_time )) ||
6145
- ParseBoolFlag (arg, kPrintUTF8Flag , >EST_FLAG (print_utf8 )) ||
6146
- ParseInt32Flag (arg, kRandomSeedFlag , >EST_FLAG (random_seed )) ||
6147
- ParseInt32Flag (arg, kRepeatFlag , >EST_FLAG (repeat )) ||
6148
- ParseBoolFlag (arg, kShuffleFlag , >EST_FLAG (shuffle )) ||
6149
- ParseInt32Flag (arg, kStackTraceDepthFlag ,
6150
- & GTEST_FLAG (stack_trace_depth)) ||
6151
- ParseStringFlag (arg, kStreamResultToFlag ,
6152
- & GTEST_FLAG (stream_result_to)) ||
6153
- ParseBoolFlag (arg, kThrowOnFailureFlag ,
6154
- >EST_FLAG (throw_on_failure));
6210
+ ParseBoolFlag (arg, kBreakOnFailureFlag ,
6211
+ >EST_FLAG (break_on_failure)) ||
6212
+ ParseBoolFlag (arg, kCatchExceptionsFlag ,
6213
+ >EST_FLAG (catch_exceptions)) ||
6214
+ ParseStringFlag (arg, kColorFlag , >EST_FLAG (color)) ||
6215
+ ParseStringFlag (arg, kDeathTestStyleFlag ,
6216
+ >EST_FLAG (death_test_style)) ||
6217
+ ParseBoolFlag (arg, kDeathTestUseFork ,
6218
+ >EST_FLAG (death_test_use_fork)) ||
6219
+ ParseBoolFlag (arg, kFailFast , >EST_FLAG (fail_fast )) ||
6220
+ ParseStringFlag (arg, kFilterFlag , & GTEST_FLAG (filter)) ||
6221
+ ParseStringFlag (arg, kInternalRunDeathTestFlag ,
6222
+ >EST_FLAG (internal_run_death_test )) ||
6223
+ ParseBoolFlag (arg, kListTestsFlag , >EST_FLAG (list_tests )) ||
6224
+ ParseStringFlag (arg, kOutputFlag , >EST_FLAG (output )) ||
6225
+ ParseBoolFlag (arg, kPrintTimeFlag , >EST_FLAG (print_time )) ||
6226
+ ParseBoolFlag (arg, kPrintUTF8Flag , >EST_FLAG (print_utf8 )) ||
6227
+ ParseInt32Flag (arg, kRandomSeedFlag , >EST_FLAG (random_seed )) ||
6228
+ ParseInt32Flag (arg, kRepeatFlag , >EST_FLAG (repeat )) ||
6229
+ ParseBoolFlag (arg, kShuffleFlag , & GTEST_FLAG (shuffle)) ||
6230
+ ParseInt32Flag (arg, kStackTraceDepthFlag ,
6231
+ & GTEST_FLAG (stack_trace_depth)) ||
6232
+ ParseStringFlag (arg, kStreamResultToFlag ,
6233
+ & GTEST_FLAG (stream_result_to)) ||
6234
+ ParseBoolFlag (arg, kThrowOnFailureFlag , >EST_FLAG (throw_on_failure));
6155
6235
}
6156
6236
6157
6237
#if GTEST_USE_OWN_FLAGFILE_FLAG_
0 commit comments