summaryrefslogtreecommitdiff
path: root/Install.txt
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-28 19:07:23 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-28 19:07:23 -0400
commit0b8ef06e08c6d58458ed185ec69d580428dc42ff (patch)
tree123c3a9710149ee691fc91d5de12781b0df82717 /Install.txt
parent48187e4fe6d4b12f05eae0250f7368e14fc9d448 (diff)
downloadcryptopp-git-0b8ef06e08c6d58458ed185ec69d580428dc42ff.tar.gz
Updated intstall.txt to use'egrep "(error|FAILED)\'
Diffstat (limited to 'Install.txt')
-rw-r--r--Install.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Install.txt b/Install.txt
index d05f5a88..181e1544 100644
--- a/Install.txt
+++ b/Install.txt
@@ -116,14 +116,14 @@ The Crypto++ embraces tools like Undefined Behavior sanitizer (UBsan), Address s
UBsan and Asan are mutually exclusive options, so you can perform only one of these at a time:
make ubsan
- ./cryptest.exe v 2>&1 | grep FAILED
- ./cryptest.exe tv all 2>&1 | grep FAILED
+ ./cryptest.exe v 2>&1 | egrep "(error|FAILED)"
+ ./cryptest.exe tv all 2>&1 | egrep "(error|FAILED)"
Or:
make asan
- ./cryptest.exe v 2>&1 | grep FAILED
- ./cryptest.exe tv all 2>&1 | grep FAILED
+ ./cryptest.exe v 2>&1 | egrep "(error|FAILED)"
+ ./cryptest.exe tv all 2>&1 | egrep "(error|FAILED)"
If you experience self test failures or see reports of undefined behavior, then you should ensure CRYPTOPP_NO_UNALIGNED_DATA_ACCESS is defined in config.h. CRYPTOPP_NO_UNALIGNED_DATA_ACCESS is not defined due to historical purposes.