Browse Source

Fix test on CI

Samuel Thibault 5 years ago
parent
commit
d7e2f87c47
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/loader.c

+ 2 - 2
tests/loader.c

@@ -275,8 +275,8 @@ int main(int argc, char *argv[])
 
 	if (strstr(test_name, "spmv/dw_block_spmv"))
 	{
-		test_args = (char *) calloc(150, sizeof(char));
-		snprintf(test_args, 150, "%s/examples/spmv/matrix_market/examples/fidapm05.mtx", STARPU_SRC_DIR);
+		test_args = (char *) calloc(512, sizeof(char));
+		snprintf(test_args, 512, "%s/examples/spmv/matrix_market/examples/fidapm05.mtx", STARPU_SRC_DIR);
 	}
 	else if (strstr(test_name, "starpu_perfmodel_display"))
 	{