Updated intstall.txt to use'egrep "(error|FAILED)\'

pull/35/head
Jeffrey Walton 2015-07-28 19:07:23 -04:00
parent 48187e4fe6
commit 0b8ef06e08
1 changed files with 4 additions and 4 deletions

View File

@ -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.