Skip to content

Commit 1e0c794

Browse files
Only run one test
1 parent 322622a commit 1e0c794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/test_framework/src/firebase_test_framework.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ char** EditMainArgsForGoogleTest(int* argc, char* argv[]) {
351351
std::vector<std::string> modified_args(original_args);
352352

353353
// Add elements to the `modified_args` vector to specify to googletest.
354-
// e.g. modified_args.push_back("--gtest_list_tests");
355-
// e.g. modified_args.push_back("--gtest_filter=MyTestFixture.MyTest");
354+
modified_args.push_back("--gtest_catch_exceptions=0");
355+
modified_args.push_back("--gtest_filter=TransactionTest*");
356356

357357
// Create a new `argv` with the elements from the `modified_args` vector and
358358
// write the new count back to `argc`. The memory leaks produced by

0 commit comments

Comments
 (0)