-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnitTests: eliminate the calls to 'return' in the test scripts #517
Comments
Eliminated the questionable return statements. Unittests look mostly fine. But some errors cropped up in PGP.t It could be that |
Therefore the garbling must be done with an octett array too.
Decode it so that we can do the comparison
Issue #517 return in test scripts
After considering the encodings, PGP.t succeeds again. Also some refactoring in PGP.t. Closing this issue. |
The test scripts still contain many 'return' calls. These are primarily used for aborting a test script in specific error conditions. These return calls are problematic because:
Easy cases can be replace by a
skip_all()
. Other cases might need a more elaborate logic.TODO:
return
in test scriptsThe text was updated successfully, but these errors were encountered: