From 2697f623ae1534b669e182934ade124bd9cfd7ad Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sun, 25 Sep 2011 09:12:48 -0300 Subject: [PATCH] test/atomicity: redirect output from "which" Without redirection, this produced some slightly confusing output in case gdb was present. --- test/atomicity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/atomicity b/test/atomicity index f9dbc9a6..34642388 100755 --- a/test/atomicity +++ b/test/atomicity @@ -7,7 +7,7 @@ test_description='atomicity' # final database contents should be the same regardless of when (or # if) it is killed and restarted. -if which gdb; then +if which gdb 1>/dev/null 2>&1; then test_set_prereq GDB # Create a maildir structure to also stress flag synchronization -- 2.43.0