From 787357c533bdf4549084af9a489a267478c5865d Mon Sep 17 00:00:00 2001
From: klijn1 <nonoice@gmail.com>
Date: Wed, 19 Oct 2016 15:02:54 +0200
Subject: [PATCH] Fix review comments:  - changed back a non-typo (that will
 tech me to use spell checking...)  - Output result of test-function as exit
 value

---
 README.md                     | 2 +-
 tests/validation/validate.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index c1bb5ae9..3dddcd8d 100644
--- a/README.md
+++ b/README.md
@@ -68,7 +68,7 @@ cmake <path to CMakeLists.txt> -DWITH_TBB=ON
 ### TBB on Cray systems
 
 To compile with TBB on Cray systems, load the intel module, which will automatically configure the environment.
-The guide below shows how to use the version of TBB that is installed as part of the Intel compiler tool-chain.
+The guide below shows how to use the version of TBB that is installed as part of the Intel compiler toolchain.
 It is recommended that you install the most recent version of TBB yourself, and link against this, because older versions
 of TBB don't work with recent versions of GCC.
 
diff --git a/tests/validation/validate.cpp b/tests/validation/validate.cpp
index 64aa842c..de70f9bf 100644
--- a/tests/validation/validate.cpp
+++ b/tests/validation/validate.cpp
@@ -53,7 +53,7 @@ int main(int argc, char **argv) {
             }
         }
 
-        if (RUN_ALL_TESTS());   // Wrap with empty if to silence output not used warning
+        return RUN_ALL_TESTS();
     }
 
     catch (to::parse_opt_error& e) {
-- 
GitLab