-
Notifications
You must be signed in to change notification settings - Fork 9
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
Make relaxed-comparison the default #34
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea! Just a few minor comments from my side.
9ce4d03
to
3a92788
Compare
utils/scripts/runTestRIG.py
Outdated
@@ -559,7 +559,7 @@ def spawn_vengine(name, mport, iport, arch, log): | |||
if args.timeout: | |||
cmd += ['--timeout', str(int(args.timeout * 1000000))] | |||
if args.no_shrink: | |||
cmd += ['-S'] | |||
cmd += ['-S'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason why you added an extra indent here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, just a mistake...fixed now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, do you mind squashing those last two commits into one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That should be done automatically in the "squash and merge" option from github, right? I would want all of them to be squashed into one commit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah ok, fine by me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy for this to go in with a squash.
This PR makes relaxed comparison the default method and adds a flag that if set mandates strict comparison.