We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48c3594 commit 39190fcCopy full SHA for 39190fc
test/test_06_state.cpp
@@ -356,7 +356,8 @@ KAGUYA_TEST_FUNCTION_DEF(allocation_error_test)(kaguya::State &) {
356
state["data"] = kaguya::NewTable();
357
Foo foodata;
358
for (size_t i = 0; i < alloclimit; ++i) {
359
- state("data[" + to_string(i) + "] ='abc'");
+ std:cout << i << '/' << alloclimit << '\n';
360
+ state("data[" + to_string(i) + "] = 'xyz'");
361
state["data"][i + alloclimit * 2] = alloctest();
362
state["data"][i + alloclimit * 3] = 1;
363
state["data"][i + alloclimit * 4] = "str";
0 commit comments