From a730bc458e0f9391919abe65bf2b0a7227e6279c Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Sat, 20 Jan 2024 12:40:26 +0000 Subject: [PATCH] Use verbose test output to help find segfaults While testing null-byte support, the Ruby interpreter segfaulted but the use of RSpec's default "dots" formatter made it difficult to see which test had caused the error. Switch to the more verbose "documentation" format so it is obvious which test ran before any unexpected crash. --- .rspec | 1 + 1 file changed, 1 insertion(+) diff --git a/.rspec b/.rspec index 83e16f80..43ae2036 100644 --- a/.rspec +++ b/.rspec @@ -1,2 +1,3 @@ --color --require spec_helper +--format documentation