X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flibpspp%2Fsparse-xarray-test.c;h=279863e9baac10713ed6560222f68093f27924fe;hb=7665da99ed70c1a5ffee47e99e1672244b444ed4;hp=dd5a2a99307d2dee4c60cf524c9d8c63ac73d14e;hpb=2edc2ff5662e09812b95350774e5add0fa2a7616;p=pspp-builds.git diff --git a/tests/libpspp/sparse-xarray-test.c b/tests/libpspp/sparse-xarray-test.c index dd5a2a99..279863e9 100644 --- a/tests/libpspp/sparse-xarray-test.c +++ b/tests/libpspp/sparse-xarray-test.c @@ -182,7 +182,7 @@ check_state (struct mc *mc, struct test_state *ts, const struct test_model *tm) for (col = 0; col < params->n_columns; col++) if (data[col] != model->data[row][col]) { - mc_error (mc, "xarray %d: element %zu,%zu (of %zu,%zu) " + mc_error (mc, "xarray %d: element %d,%d (of %d,%d) " "differs: %d should be %d", i, row, col, n_rows, n_columns, data[col], model->data[row][col]); @@ -201,7 +201,7 @@ check_state (struct mc *mc, struct test_state *ts, const struct test_model *tm) ds_clear (&ds); for (col = 0; col < n_columns; col++) ds_put_format (&ds, " %d", model->data[row][col]); - mc_error (mc, "xarray %d: row %zu:%s", i, row, ds_cstr (&ds)); + mc_error (mc, "xarray %d: row %d:%s", i, row, ds_cstr (&ds)); } mc_error (mc, "xarray %d: actual:", i); @@ -216,7 +216,7 @@ check_state (struct mc *mc, struct test_state *ts, const struct test_model *tm) ds_clear (&ds); for (col = 0; col < n_columns; col++) ds_put_format (&ds, " %d", data[col]); - mc_error (mc, "xarray %d: row %zu:%s", i, row, ds_cstr (&ds)); + mc_error (mc, "xarray %d: row %d:%s", i, row, ds_cstr (&ds)); } ds_destroy (&ds); @@ -273,8 +273,8 @@ sparse_xarray_mc_init (struct mc *mc) struct test_model tm; int i; - mc_name_operation (mc, "empty sparse_xarray with n_columns=%zu, " - "max_memory_rows=%zu", + mc_name_operation (mc, "empty sparse_xarray with n_columns=%d, " + "max_memory_rows=%d", params->n_columns, params->max_memory_rows); ts = xmalloc (sizeof *ts); for (i = 0; i < params->n_xarrays; i++)