-
Notifications
You must be signed in to change notification settings - Fork 196
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
test(e2e): fix memory corruption test #2378
Conversation
|
Memory corruption would occur when the dynamic length is smaller than the static length, so this test doesn't even make sense |
On the other hand 2 tests are also fine, but they would test for different kinds of memory corruption |
Thanks for the clarification @dk1a! I added tests for different dynamic array lengths, but maybe we can test memory corruption more thoroughly |
You can add |
ooc any reason this lives in e2e and not in store? seems critical enough to live in store |
to avoid a test-only table in store |
Fixes the test created in #1880
I'm not 100% sure what the intention of this test is, when I run it the memory it the elements of
result
are the same asdata
(ie. not corrupted). Maybe this test added before the fix, to prove it was broken?