-
Notifications
You must be signed in to change notification settings - Fork 274
Make Powershell stop on errors [depends-on: #3616, blocks: #2310, #3636, #3637] #3627
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
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.
✔️
Passed Diffblue compatibility checks (cbmc commit: 10aeffe).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/95900880
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.
✔️
Passed Diffblue compatibility checks (cbmc commit: aeded54).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/95911410
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.
✔️
Passed Diffblue compatibility checks (cbmc commit: 430c6a6).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/95993085
We had failing regression tests, but this went unnoticed because the goto-cl regression tests were successful (which were the last common run in the cmdlet).
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.
✔️
Passed Diffblue compatibility checks (cbmc commit: 2d9c00b).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/96062013
@@ -64,6 +64,9 @@ phases: | |||
- | | |||
$env:Path = "C:\tools\cygwin\bin;$env:Path" | |||
cmd /c 'call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 && bash -c "make -C regression test BUILD_ENV=MSVC" ' | |||
|
|||
- | |
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.
Apologies if I don't understand the buildspec + windows combination - but why does regression/goto-cl
need to be treated any differently from any of the other subdirectories in regression/
?
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.
I think it's just that goto-cl
is not part of the standard make test
target set. Perhaps we should make it so under win32, either by checking $OS or by checking if cl.exe
appears to be in the path using which
.
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.
Fixing up the make test
target to understand that on win32 or whatever, extra targets should be added would probably be preferable/less error prone when moving between CI infrastructure, etc.
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.
I'll take care of this in a separate PR. We also have some weird interaction between scripts removing dirs and the makefiles at the moment, which should all go away thanks to the -X/-I options in test.pl.
Do not use global variable that requires an initializer function [depends-on: #3627]
We had failing regression tests, but this went unnoticed because the goto-cl
regression tests were successful (which were the last common run in the cmdlet).