Changeset 60:b87f8bb9944c in xplra
- Timestamp:
- 04/04/13 15:56:27 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/basicctest.c
r55 r60 157 157 "sim/aircraft/view/acf_descrip"); 158 158 if (length<0) goto error; 159 printf("Got % zu bytes, as a string: '%s'\n\n",length, result);159 printf("Got %lu bytes, as a string: '%s'\n\n", (unsigned long)length, result); 160 160 161 161 printf("Querying the aircraft's description as a dynamically created array with an offset of 3...\n"); … … 164 164 "sim/aircraft/view/acf_descrip"); 165 165 if (result1==0) goto error; 166 printf("Got % zu bytes, as a string: '%s'\n\n",length1, result1);166 printf("Got %lu bytes, as a string: '%s'\n\n", (unsigned long)length1, result1); 167 167 168 168 printf("Querying the aircraft's engine types as an array of a fixed size...\n"); … … 171 171 172 172 if (length<0) goto error; 173 printf("Got % zd values:",length);173 printf("Got %ld values:", (long)length); 174 174 for(i = 0; i<length; ++i) { 175 175 if (i>0) printf(","); … … 182 182 result4 = xplra_get_int_array_new(&length1, 0, connectionID, 183 183 "sim/aircraft/prop/acf_en_type"); 184 printf("Got % zu values:",length1);184 printf("Got %lu values:", (unsigned long)length1); 185 185 for(j = 0; j<length1; ++j) { 186 186 if (j>0) printf(","); … … 193 193 0, connectionID, 194 194 "sim/aircraft/prop/acf_prop_dir"); 195 printf("Got % zd values:",length);195 printf("Got %ld values:", (long)length); 196 196 for(i = 0; i<length; ++i) { 197 197 if (i>0) printf(","); … … 204 204 result6 = xplra_get_float_array_new(&length1, 0, connectionID, 205 205 "sim/aircraft/prop/acf_prop_dir"); 206 printf("Got % zu values:",length1);206 printf("Got %lu values:", (unsigned long)length1); 207 207 for(j = 0; j<length1; ++j) { 208 208 if (j>0) printf(","); -
test/basictest.cc
r40 r60 99 99 size_t length = xplane.getByteArray("sim/aircraft/view/acf_descrip", 100 100 result, sizeof(result)/sizeof(result[0])); 101 printf("Got %zu bytes, as a string: '%s'\n\n", length, result); 101 printf("Got %lu bytes, as a string: '%s'\n\n", 102 static_cast<unsigned long>(length), result); 102 103 103 104 printf("Querying the aircraft's description as a dynamically created array...\n"); 104 105 uint8_t* result1 = xplane.getByteArray("sim/aircraft/view/acf_descrip", length); 105 printf("Got %zu bytes, as a string: '%s'\n\n", length, result1); 106 printf("Got %lu bytes, as a string: '%s'\n\n", 107 static_cast<unsigned long>(length), result1); 106 108 107 109 printf("Querying the aircraft's description as a string, with an offset of 3...\n"); … … 113 115 length = xplane.getIntArray("sim/aircraft/prop/acf_en_type", 114 116 result3, sizeof(result3)/sizeof(result3[0])); 115 printf("Got % zu values:", length);117 printf("Got %lu values:", static_cast<unsigned long>(length)); 116 118 for(size_t i = 0; i<length; ++i) { 117 119 if (i>0) printf(","); … … 123 125 length = 0; 124 126 int32_t* result4 = xplane.getIntArray("sim/aircraft/prop/acf_en_type", length); 125 printf("Got % zu values:", length);127 printf("Got %lu values:", static_cast<unsigned long>(length)); 126 128 for(size_t i = 0; i<length; ++i) { 127 129 if (i>0) printf(","); … … 134 136 length = xplane.getFloatArray("sim/aircraft/prop/acf_prop_dir", 135 137 result5, sizeof(result5)/sizeof(result5[0])); 136 printf("Got % zu values:", length);138 printf("Got %lu values:", static_cast<unsigned long>(length)); 137 139 for(size_t i = 0; i<length; ++i) { 138 140 if (i>0) printf(","); … … 144 146 length = 0; 145 147 float* result6 = xplane.getFloatArray("sim/aircraft/prop/acf_prop_dir", length); 146 printf("Got % zu values:", length);148 printf("Got %lu values:", static_cast<unsigned long>(length)); 147 149 for(size_t i = 0; i<length; ++i) { 148 150 if (i>0) printf(",");
Note:
See TracChangeset
for help on using the changeset viewer.