Skip to content

Commit

Permalink
Restore correct expected_error_count
Browse files Browse the repository at this point in the history
Master Hash test functions now exit with error or complete normally.

Signed-off-by: Richard T Bonhomme <[email protected]>
  • Loading branch information
TinCanTech committed Mar 4, 2022
1 parent c09d50a commit 79d65f7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions easytls
Original file line number Diff line number Diff line change
Expand Up @@ -9878,6 +9878,7 @@ main ()
print "VALID: ${*}"
else
print "Invalid HW address: ${*}"
exit 1
fi
AUTO_CHECK_DISABLED=1
easytls_verb_io off
Expand All @@ -9889,6 +9890,7 @@ main ()
print "VALID: ${valid_octets}/${mask_len}"
else
print "*** Invalid IP: ${*} ***"
exit 1
fi
AUTO_CHECK_DISABLED=1
easytls_verb_io off
Expand All @@ -9900,6 +9902,7 @@ main ()
print "VALID: ${valid_octets}/${mask_len}"
else
print "*** Invalid IP4: ${*} ***"
exit 1
fi
AUTO_CHECK_DISABLED=1
easytls_verb_io off
Expand All @@ -9911,6 +9914,7 @@ main ()
print "VALID: ${valid_octets}/${mask_len}"
else
print "*** Invalid IP4: ${*} ***"
exit 1
fi
AUTO_CHECK_DISABLED=1
easytls_verb_io off
Expand All @@ -9922,6 +9926,7 @@ main ()
print "VALID: ${full_valid_ip6_addr}"
else
print "*** Invalid IP6: ${*} ***"
exit 1
fi
AUTO_CHECK_DISABLED=1
easytls_verb_io off
Expand All @@ -9935,6 +9940,7 @@ main ()
else
invalid_address "$?"
print "*** Invalid IP6: ${*} ***"
exit 1
fi
AUTO_CHECK_DISABLED=1
easytls_verb_io off
Expand Down

1 comment on commit 79d65f7

@TinCanTech
Copy link
Owner Author

@TinCanTech TinCanTech commented on 79d65f7 Mar 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#282

The commit message is incorrect, these are not "Master Hash test functions" they are IP functions.

Please sign in to comment.