Skip to content
Snippets Groups Projects
Commit 787357c5 authored by klijn1's avatar klijn1
Browse files

Fix review comments:

 - changed back a non-typo (that will tech me to use spell checking...)
 - Output result of test-function as exit value
parent f4564b2f
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
......@@ -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) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment