Index: ossp-pkg/xds/regression-tests/xdr-int32.c RCS File: /v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-int32.c,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-int32.c,v' 2>/dev/null --- xdr-int32.c 2001/07/18 18:26:33 1.2 +++ xdr-int32.c 2001/07/18 18:58:46 1.3 @@ -78,7 +78,7 @@ { if (xds_encode(xds, "int", values[i]) != XDS_OK) { - printf("xds_encode(values[%d]) failed!", i); + printf("xds_encode(values[%d]) failed!\n", i); return 1; } } @@ -127,12 +127,12 @@ int32_t tmp; if (xds_decode(xds, "int", &tmp) != XDS_OK) { - printf("xds_encode() failed for the %d value!", i); + printf("xds_encode() failed for the %d value!\n", i); return 1; } if (values[i] != tmp) { - printf("The %dth value has not been decoded correctly!", i); + printf("The %dth value has not been decoded correctly!\n", i); return 1; } } Index: ossp-pkg/xds/regression-tests/xdr-int64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-int64.c,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-int64.c,v' 2>/dev/null --- xdr-int64.c 2001/07/18 18:26:33 1.2 +++ xdr-int64.c 2001/07/18 18:58:46 1.3 @@ -78,7 +78,7 @@ { if (xds_encode(xds, "int", values[i]) != XDS_OK) { - printf("xds_encode(values[%d]) failed!", i); + printf("xds_encode(values[%d]) failed!\n", i); return 1; } } @@ -127,12 +127,12 @@ int64_t tmp; if (xds_decode(xds, "int", &tmp) != XDS_OK) { - printf("xds_encode() failed for the %d value!", i); + printf("xds_encode() failed for the %d value!\n", i); return 1; } if (values[i] != tmp) { - printf("The %dth value has not been decoded correctly!", i); + printf("The %dth value has not been decoded correctly!\n", i); return 1; } } Index: ossp-pkg/xds/regression-tests/xdr-uint32.c RCS File: /v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-uint32.c,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-uint32.c,v' 2>/dev/null --- xdr-uint32.c 2001/07/18 18:26:33 1.2 +++ xdr-uint32.c 2001/07/18 18:58:46 1.3 @@ -77,7 +77,7 @@ { if (xds_encode(xds, "uint", values[i]) != XDS_OK) { - printf("xds_encode(values[%d]) failed!", i); + printf("xds_encode(values[%d]) failed!\n", i); return 1; } } @@ -126,12 +126,12 @@ u_int32_t tmp; if (xds_decode(xds, "uint", &tmp) != XDS_OK) { - printf("xds_encode() failed for the %d value!", i); + printf("xds_encode() failed for the %d value!\n", i); return 1; } if (values[i] != tmp) { - printf("The %dth value has not been decoded correctly!", i); + printf("The %dth value has not been decoded correctly!\n", i); return 1; } } Index: ossp-pkg/xds/regression-tests/xdr-uint64.c RCS File: /v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-uint64.c,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/xds/regression-tests/Attic/xdr-uint64.c,v' 2>/dev/null --- xdr-uint64.c 2001/07/18 18:26:33 1.2 +++ xdr-uint64.c 2001/07/18 18:58:46 1.3 @@ -77,7 +77,7 @@ { if (xds_encode(xds, "uint", values[i]) != XDS_OK) { - printf("xds_encode(values[%d]) failed!", i); + printf("xds_encode(values[%d]) failed!\n", i); return 1; } } @@ -126,12 +126,12 @@ u_int64_t tmp; if (xds_decode(xds, "uint", &tmp) != XDS_OK) { - printf("xds_encode() failed for the %d value!", i); + printf("xds_encode() failed for the %d value!\n", i); return 1; } if (values[i] != tmp) { - printf("The %dth value has not been decoded correctly!", i); + printf("The %dth value has not been decoded correctly!\n", i); return 1; } }