aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/alloc_SUITE_data/coalesce.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2012-11-15 18:19:21 +0100
committerSverker Eriksson <[email protected]>2012-11-15 18:20:49 +0100
commit379fc29e02f91193a9bc41454f9bf288ca4a7989 (patch)
treee05822e740932a1890bbfdc481fa64a63c3e1f85 /erts/emulator/test/alloc_SUITE_data/coalesce.c
parentfacbc93c04c757c1e5c10097d90187d177d0c376 (diff)
downloadotp-379fc29e02f91193a9bc41454f9bf288ca4a7989.tar.gz
otp-379fc29e02f91193a9bc41454f9bf288ca4a7989.tar.bz2
otp-379fc29e02f91193a9bc41454f9bf288ca4a7989.zip
erts: Fix alloc_SUITE:coalesce for new header scheme
Diffstat (limited to 'erts/emulator/test/alloc_SUITE_data/coalesce.c')
-rw-r--r--erts/emulator/test/alloc_SUITE_data/coalesce.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/alloc_SUITE_data/coalesce.c b/erts/emulator/test/alloc_SUITE_data/coalesce.c
index a646b8327f..981fa6d43e 100644
--- a/erts/emulator/test/alloc_SUITE_data/coalesce.c
+++ b/erts/emulator/test/alloc_SUITE_data/coalesce.c
@@ -266,7 +266,7 @@ testcase_name(void)
void
testcase_run(TestCaseState_t *tcs)
{
- char *argv_org[] = {"-tmmbcs1024", "-tsbct2048", "-trmbcmt100", "-tas", NULL, NULL};
+ char *argv_org[] = {"-tsmbcs511","-tmmbcs511", "-tsbct512", "-trmbcmt100", "-tas", NULL, NULL};
char *alg[] = {"af", "gf", "bf", "aobf", "aoff", NULL};
int i;
@@ -276,7 +276,7 @@ testcase_run(TestCaseState_t *tcs)
char *argv[sizeof(argv_org)/sizeof(argv_org[0])];
memcpy((void *) argv, (void *) argv_org, sizeof(argv_org));
- argv[4] = alg[i];
+ argv[5] = alg[i];
testcase_printf(tcs, " *** Starting \"%s\" allocator *** \n", alg[i]);
a = START_ALC("coalesce_", 0, argv);
ASSERT(tcs, a);