From 0059b6a9bedc2d695e1e84c4493280ea3298d320 Mon Sep 17 00:00:00 2001 From: Krista 'DarthMama' Bennett Date: Tue, 5 May 2020 21:39:48 +0200 Subject: [PATCH] Small commit to reset default. --- test/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/README.md b/test/README.md index dfbe70bc..553bc823 100644 --- a/test/README.md +++ b/test/README.md @@ -197,6 +197,11 @@ have found a dastardly bug in the engine, but it can also be a test issue. gdb --args ./EngineTests --gtest_filter=TestSuiteName.test_function_name ``` +N.B. The gtest_filter can be globbed and will run all matching tests; if you +want to run every test in a test suite, be sure to use TestSuiteName*. + +(Different shells will require different quoting styles for this - YMMV.) + When debugging a failing test, use '--gtest_break_on_failure' to have gtest automatically break into the debugger where the assertion fails.