Check-in Number:
|
4240 | |
Date: |
2001-Jul-24 15:50:15 (local)
2001-Jul-24 13:50:15 (UTC) |
User: | simons |
Branch: | |
Comment: |
Removed printing of long long values so that the tests don't run into
portability problems. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/regression-tests/xml-int64.c 1.2 -> 1.3
--- xml-int64.c 2001/07/23 16:45:10 1.2
+++ xml-int64.c 2001/07/24 13:50:15 1.3
@@ -104,7 +104,7 @@
}
if (val != values[i])
{
- printf("Decoded value (%lld) does not match the original value (%lld)!\n", val, values[i]);
+ printf("Decoded value does not match the original!\n");
return 1;
}
}
|
|
ossp-pkg/xds/regression-tests/xml-uint64.c 1.2 -> 1.3
--- xml-uint64.c 2001/07/23 16:45:11 1.2
+++ xml-uint64.c 2001/07/24 13:50:15 1.3
@@ -103,7 +103,7 @@
}
if (val != values[i])
{
- printf("Decoded value (%llu) does not match the original value (%llu)!\n", val, values[i]);
+ printf("Decoded value does not match the original!\n");
return 1;
}
}
|
|