-
Notifications
You must be signed in to change notification settings - Fork 44
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
[WIP] Add full test case for variadic delayed Matrix allocation #420
base: development
Are you sure you want to change the base?
Conversation
Hmpf, the error is not triggered in CI. Here is what I see on my laptop:
|
I can report the same error, for me it even triggers in the first test I tried to debug it a little bit and it seems to fail in |
The main issue has been fixed in #444 (thanks to @fmoessbauer). What is left in this PR is splitting the test for variadic matrix allocation into a separate test case. |
@fuchsto: Please have a look at this. Your test
MatrixTest.DelayedAlloc
succeeds while the new testMatrixTest.VariadicDelayedAlloc
fails while checking the validity of the pattern arguments, which are the same as in the first test. So either the first test case is invalid or the check inPatternArguments
is overly strict. I cannot decide that :)