X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fdata%2Fdatasheet-test.c;h=1310f51337234783e9ffd5b0752a87493c69da98;hb=2854aec799f70255f922440c3454694193f19084;hp=e3dad3b32c8a9b826656c38e32dc1a278cc91671;hpb=8180c5dd1591446174c0753ee960921786113403;p=pspp diff --git a/tests/data/datasheet-test.c b/tests/data/datasheet-test.c index e3dad3b32c..1310f51337 100644 --- a/tests/data/datasheet-test.c +++ b/tests/data/datasheet-test.c @@ -42,7 +42,6 @@ #include "error.h" #include "minmax.h" #include "progname.h" -#include "xalloc.h" /* lazy_casereader callback function to instantiate a casereader from the datasheet. */ @@ -163,7 +162,7 @@ check_datasheet_casereader (struct mc *mc, struct casereader *reader, "'%.*s' != '%.*s'", row, col, n_rows, n_columns, width, case_str_idx (c, col), - width, value_str (&array[row][col], width)); + width, array[row][col].s); } } @@ -225,8 +224,8 @@ check_datasheet (struct mc *mc, struct datasheet *ds, mc_error (mc, "element %zu,%zu (of %zu,%zu) differs: " "'%.*s' != '%.*s'", row, col, n_rows, n_columns, - width, value_str (&v, width), - width, value_str (av, width)); + width, v.s, + width, v.s); difference = true; } value_destroy (&v, width); @@ -249,7 +248,7 @@ check_datasheet (struct mc *mc, struct datasheet *ds, if (width == 0) ds_put_format (&s, " %g", v->f); else - ds_put_format (&s, " '%.*s'", width, value_str (v, width)); + ds_put_format (&s, " '%.*s'", width, v->s); } mc_error (mc, "%s", ds_cstr (&s)); } @@ -270,8 +269,7 @@ check_datasheet (struct mc *mc, struct datasheet *ds, if (width == 0) ds_put_format (&s, " %g", v.f); else - ds_put_format (&s, " '%.*s'", - width, value_str (&v, width)); + ds_put_format (&s, " '%.*s'", width, v.s); } mc_error (mc, "%s", ds_cstr (&s)); } @@ -407,12 +405,11 @@ value_from_param (union value *value, int width, unsigned int idx) else { unsigned int hash = hash_int (idx, 0); - uint8_t *string = value_str_rw (value, width); int offset; assert (width < 32); for (offset = 0; offset < width; offset++) - string[offset] = "ABCDEFGHIJ"[(hash >> offset) % 10]; + value->s[offset] = "ABCDEFGHIJ"[(hash >> offset) % 10]; } } @@ -858,10 +855,9 @@ usage (void) " other values are string widths (0,1,11)\n", program_name, program_name); mc_options_usage (); - fputs ("\nOther options:\n" - " --help Display this help message\n" - "\nReport bugs to \n", - stdout); + printf ("\nOther options:\n" + " --help Display this help message\n" + "\nReport bugs to <%s>\n", PACKAGE_BUGREPORT); exit (0); }