OpenCoverage

split.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/coreutils/src/src/split.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3-
4static char const *filter_command;-
5-
6-
7static int filter_pid;-
8-
9-
10static int *open_pipes;-
11static size_t open_pipes_alloc;-
12static size_t n_open_pipes;-
13-
14-
15static sigset_t oldblocked;-
16static sigset_t newblocked;-
17-
18-
19static char const *outbase;-
20-
21-
22static char *outfile;-
23-
24-
25-
26static char *outfile_mid;-
27-
28-
29static -
30 _Bool -
31 suffix_auto = -
32 1-
33 ;-
34-
35-
36static size_t suffix_length;-
37-
38-
39static char const *suffix_alphabet = "abcdefghijklmnopqrstuvwxyz";-
40-
41-
42static const char *numeric_suffix_start;-
43-
44-
45static char const *additional_suffix;-
46-
47-
48static char *infile;-
49-
50-
51static struct stat in_stat_buf;-
52-
53-
54static int output_desc = -1;-
55-
56-
57-
58static -
59 _Bool -
60 verbose;-
61-
62-
63static -
64 _Bool -
65 elide_empty_files;-
66-
67-
68-
69static -
70 _Bool -
71 unbuffered;-
72-
73-
74static int eolchar = -1;-
75-
76-
77enum Split_type-
78{-
79 type_undef, type_bytes, type_byteslines, type_lines, type_digits,-
80 type_chunk_bytes, type_chunk_lines, type_rr-
81};-
82-
83-
84-
85enum-
86{-
87 VERBOSE_OPTION = 0x7f + 1,-
88 FILTER_OPTION,-
89 IO_BLKSIZE_OPTION,-
90 ADDITIONAL_SUFFIX_OPTION-
91};-
92-
93static struct option const longopts[] =-
94{-
95 {"bytes", -
96 1-
97 , -
98 ((void *)0)-
99 , 'b'},-
100 {"lines", -
101 1-
102 , -
103 ((void *)0)-
104 , 'l'},-
105 {"line-bytes", -
106 1-
107 , -
108 ((void *)0)-
109 , 'C'},-
110 {"number", -
111 1-
112 , -
113 ((void *)0)-
114 , 'n'},-
115 {"elide-empty-files", -
116 0-
117 , -
118 ((void *)0)-
119 , 'e'},-
120 {"unbuffered", -
121 0-
122 , -
123 ((void *)0)-
124 , 'u'},-
125 {"suffix-length", -
126 1-
127 , -
128 ((void *)0)-
129 , 'a'},-
130 {"additional-suffix", -
131 1-
132 , -
133 ((void *)0)-
134 ,-
135 ADDITIONAL_SUFFIX_OPTION},-
136 {"numeric-suffixes", -
137 2-
138 , -
139 ((void *)0)-
140 , 'd'},-
141 {"hex-suffixes", -
142 2-
143 , -
144 ((void *)0)-
145 , 'x'},-
146 {"filter", -
147 1-
148 , -
149 ((void *)0)-
150 , FILTER_OPTION},-
151 {"verbose", -
152 0-
153 , -
154 ((void *)0)-
155 , VERBOSE_OPTION},-
156 {"separator", -
157 1-
158 , -
159 ((void *)0)-
160 , 't'},-
161 {"-io-blksize", -
162 1-
163 , -
164 ((void *)0)-
165 ,-
166 IO_BLKSIZE_OPTION},-
167 {"help", -
168 0-
169 , -
170 ((void *)0)-
171 , GETOPT_HELP_CHAR},-
172 {"version", -
173 0-
174 , -
175 ((void *)0)-
176 , GETOPT_VERSION_CHAR},-
177 {-
178 ((void *)0)-
179 , 0, -
180 ((void *)0)-
181 , 0}-
182};-
183-
184-
185static inline -
186 _Bool-
187-
188ignorable (int err)-
189{-
190 return
executed 605297 times by 1 test: return filter_command && err == 32 ;
Executed by:
  • split
filter_command && err ==
executed 605297 times by 1 test: return filter_command && err == 32 ;
Executed by:
  • split
605297
191 32
executed 605297 times by 1 test: return filter_command && err == 32 ;
Executed by:
  • split
605297
192 ;
executed 605297 times by 1 test: return filter_command && err == 32 ;
Executed by:
  • split
605297
193}-
194-
195static void-
196set_suffix_length (uintmax_t n_units, enum Split_type split_type)-
197{-
198-
199-
200 uintmax_t suffix_needed = 0;-
201-
202-
203-
204-
205 if (numeric_suffix_start
numeric_suffix_startDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 408 times by 1 test
Evaluated by:
  • split
)
7-408
206 suffix_auto =
executed 7 times by 1 test: suffix_auto = 0 ;
Executed by:
  • split
7
207 0
executed 7 times by 1 test: suffix_auto = 0 ;
Executed by:
  • split
7
208 ;
executed 7 times by 1 test: suffix_auto = 0 ;
Executed by:
  • split
7
209-
210-
211 if (split_type == type_chunk_bytes
split_type == type_chunk_bytesDescription
TRUEevaluated 18 times by 1 test
Evaluated by:
  • split
FALSEevaluated 397 times by 1 test
Evaluated by:
  • split
|| split_type == type_chunk_lines
split_type == type_chunk_linesDescription
TRUEevaluated 104 times by 1 test
Evaluated by:
  • split
FALSEevaluated 293 times by 1 test
Evaluated by:
  • split
18-397
212 || split_type == type_rr
split_type == type_rrDescription
TRUEevaluated 20 times by 1 test
Evaluated by:
  • split
FALSEevaluated 273 times by 1 test
Evaluated by:
  • split
)
20-273
213 {-
214 uintmax_t n_units_end = n_units;-
215 if (numeric_suffix_start
numeric_suffix_startDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEevaluated 140 times by 1 test
Evaluated by:
  • split
)
2-140
216 {-
217 uintmax_t n_start;-
218 strtol_error e = xstrtoumax (numeric_suffix_start, -
219 ((void *)0)-
220 , 10,-
221 &n_start, "");-
222 if (e == LONGINT_OK
e == LONGINT_OKDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& n_start <=
n_start <= (18...5UL) - n_unitsDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-2
223 (18446744073709551615UL)
n_start <= (18...5UL) - n_unitsDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-2
224 - n_units
n_start <= (18...5UL) - n_unitsDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
)
0-2
225 {-
226-
227-
228-
229-
230 if (n_start < n_units
n_start < n_unitsDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
)
1
231 n_units_end += n_start;
executed 1 time by 1 test: n_units_end += n_start;
Executed by:
  • split
1
232 }
executed 2 times by 1 test: end of block
Executed by:
  • split
2
233-
234 }
executed 2 times by 1 test: end of block
Executed by:
  • split
2
235 size_t alphabet_len = strlen (suffix_alphabet);-
236 -
237 _Bool -
238 alphabet_slop = (n_units_end % alphabet_len) != 0;-
239 while (n_units_end /= alphabet_len
n_units_end /= alphabet_lenDescription
TRUEevaluated 20 times by 1 test
Evaluated by:
  • split
FALSEevaluated 142 times by 1 test
Evaluated by:
  • split
)
20-142
240 suffix_needed++;
executed 20 times by 1 test: suffix_needed++;
Executed by:
  • split
20
241 suffix_needed += alphabet_slop;-
242 suffix_auto = -
243 0-
244 ;-
245 }
executed 142 times by 1 test: end of block
Executed by:
  • split
142
246-
247 if (suffix_length
suffix_lengthDescription
TRUEevaluated 8 times by 1 test
Evaluated by:
  • split
FALSEevaluated 407 times by 1 test
Evaluated by:
  • split
)
8-407
248 {-
249 if (suffix_length < suffix_needed
suffix_length < suffix_neededDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
)
1-7
250 {-
251 ((!!sizeof (struct { _Static_assert (-
252 1-
253 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"the suffix length needs to be at least %\"\"l\" \"u\", 5), suffix_needed), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
254 1-
255 , 0, -
256 dcgettext (((void *)0), -
257 "the suffix length needs to be at least %"-
258 "l" "u", 5)-
259 , suffix_needed), ((-
260 0-
261 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
262 1-
263 , 0, -
264 dcgettext (((void *)0), -
265 "the suffix length needs to be at least %"-
266 "l" "u", 5)-
267 , suffix_needed), ((-
268 0-
269 ) ? (void) 0 : __builtin_unreachable ()))))-
270-
271 ;-
272 }
never executed: end of block
0
273 suffix_auto = -
274 0-
275 ;-
276 return;
executed 7 times by 1 test: return;
Executed by:
  • split
7
277 }-
278 else-
279 suffix_length =
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
407
280 (((
(( 2 )>( suffix_needed ))Description
TRUEevaluated 403 times by 1 test
Evaluated by:
  • split
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
4-407
281 2
(( 2 )>( suffix_needed ))Description
TRUEevaluated 403 times by 1 test
Evaluated by:
  • split
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
4-407
282 )>(
(( 2 )>( suffix_needed ))Description
TRUEevaluated 403 times by 1 test
Evaluated by:
  • split
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
4-407
283 suffix_needed
(( 2 )>( suffix_needed ))Description
TRUEevaluated 403 times by 1 test
Evaluated by:
  • split
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
4-407
284 ))
(( 2 )>( suffix_needed ))Description
TRUEevaluated 403 times by 1 test
Evaluated by:
  • split
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
?(
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
4-407
285 2
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
407
286 ):(
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
407
287 suffix_needed
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
407
288 ))
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
407
289 ;
executed 407 times by 1 test: suffix_length = ((( 2 )>( suffix_needed ))?( 2 ):( suffix_needed )) ;
Executed by:
  • split
407
290}-
291-
292void-
293usage (int status)-
294{-
295 if (status !=
status != 0Description
TRUEevaluated 14 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
14
296 0
status != 0Description
TRUEevaluated 14 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
14
297 )-
298 do { fprintf (-
299 stderr-
300 , -
301 dcgettext (((void *)0), -
302 "Try '%s --help' for more information.\n"-
303 , 5)-
304 , program_name); }
executed 14 times by 1 test: end of block
Executed by:
  • split
while (0);
14
305 else-
306 {-
307 printf (-
308 dcgettext (((void *)0), -
309 "Usage: %s [OPTION]... [FILE [PREFIX]]\n"-
310 , 5)-
311-
312 -
313 ,-
314 program_name);-
315 fputs_unlocked (-
316 dcgettext (((void *)0), -
317 "Output pieces of FILE to PREFIXaa, PREFIXab, ...;\ndefault size is 1000 lines, and default PREFIX is 'x'.\n"-
318 , 5)-
319 ,-
320 stdout-
321 )-
322-
323-
324 ;-
325-
326 emit_stdin_note ();-
327 emit_mandatory_arg_note ();-
328-
329 fprintf (-
330 stdout-
331 , -
332 dcgettext (((void *)0), -
333 " -a, --suffix-length=N generate suffixes of length N (default %d)\n --additional-suffix=SUFFIX append an additional SUFFIX to file names\n -b, --bytes=SIZE put SIZE bytes per output file\n -C, --line-bytes=SIZE put at most SIZE bytes of records per output file\n -d use numeric suffixes starting at 0, not alphabetic\n --numeric-suffixes[=FROM] same as -d, but allow setting the start value\n -x use hex suffixes starting at 0, not alphabetic\n --hex-suffixes[=FROM] same as -x, but allow setting the start value\n -e, --elide-empty-files do not generate empty output files with '-n'\n --filter=COMMAND write to shell COMMAND; file name is $FILE\n -l, --lines=NUMBER put NUMBER lines/records per output file\n -n, --number=CHUNKS generate CHUNKS output files; see explanation below\n -t, --separator=SEP use SEP instead of newline as the record separator;\n '\\0' (zero) specifies the NUL character\n -u, --unbuffered immediately copy input to output with '-n r/...'\n"-
334 , 5)-
335 , -
336 2);-
337 fputs_unlocked (-
338 dcgettext (((void *)0), -
339 " --verbose print a diagnostic just before each\n output file is opened\n"-
340 , 5)-
341 ,-
342 stdout-
343 )-
344-
345-
346 ;-
347 fputs_unlocked (-
348 dcgettext (((void *)0), -
349 " --help display this help and exit\n"-
350 , 5)-
351 ,-
352 stdout-
353 );-
354 fputs_unlocked (-
355 dcgettext (((void *)0), -
356 " --version output version information and exit\n"-
357 , 5)-
358 ,-
359 stdout-
360 );-
361 emit_size_note ();-
362 fputs_unlocked (-
363 dcgettext (((void *)0), -
364 "\nCHUNKS may be:\n N split into N files based on size of input\n K/N output Kth of N to stdout\n l/N split into N files without splitting lines/records\n l/K/N output Kth of N to stdout without splitting lines/records\n r/N like 'l' but use round robin distribution\n r/K/N likewise but only output Kth of N to stdout\n"-
365 , 5)-
366 ,-
367 stdout-
368 )-
369-
370-
371-
372-
373-
374-
375-
376 ;-
377 emit_ancillary_info ("split");-
378 }
executed 14 times by 1 test: end of block
Executed by:
  • split
14
379 exit (status);
executed 28 times by 1 test: exit (status);
Executed by:
  • split
28
380}-
381-
382-
383-
384-
385-
386-
387static off_t-
388input_file_size (int fd, struct stat const *st, char *buf, size_t bufsize)-
389{-
390 off_t cur = lseek (fd, 0, -
391 1-
392 );-
393 if (cur < 0
cur < 0Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 120 times by 1 test
Evaluated by:
  • split
)
1-120
394 {-
395 if (-
396 (*
(*__errno_location ()) == 29Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
__errno_location ())
(*__errno_location ()) == 29Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-1
397 ==
(*__errno_location ()) == 29Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-1
398 29
(*__errno_location ()) == 29Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-1
399 )-
400 -
401 (*
executed 1 time by 1 test: (*__errno_location ()) = 0;
Executed by:
  • split
__errno_location ())
executed 1 time by 1 test: (*__errno_location ()) = 0;
Executed by:
  • split
1
402 = 0;
executed 1 time by 1 test: (*__errno_location ()) = 0;
Executed by:
  • split
1
403 return
executed 1 time by 1 test: return -1;
Executed by:
  • split
-1;
executed 1 time by 1 test: return -1;
Executed by:
  • split
1
404 }-
405-
406 off_t size = 0;-
407 do-
408 {-
409 size_t n_read = safe_read (fd, buf + size, bufsize - size);-
410 if (n_read == 0
n_read == 0Description
TRUEevaluated 43 times by 1 test
Evaluated by:
  • split
FALSEevaluated 114 times by 1 test
Evaluated by:
  • split
)
43-114
411 return
executed 43 times by 1 test: return size;
Executed by:
  • split
size;
executed 43 times by 1 test: return size;
Executed by:
  • split
43
412 if (n_read == ((size_t) -1)
n_read == ((size_t) -1)Description
TRUEnever evaluated
FALSEevaluated 114 times by 1 test
Evaluated by:
  • split
)
0-114
413 return
never executed: return -1;
-1;
never executed: return -1;
0
414 size += n_read;-
415 }
executed 114 times by 1 test: end of block
Executed by:
  • split
114
416 while (size < bufsize
size < bufsizeDescription
TRUEevaluated 37 times by 1 test
Evaluated by:
  • split
FALSEevaluated 77 times by 1 test
Evaluated by:
  • split
);
37-77
417-
418-
419-
420-
421 if (st->st_size == 0
st->st_size == 0Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEevaluated 75 times by 1 test
Evaluated by:
  • split
)
2-75
422 {-
423-
424-
425-
426 -
427 (*__errno_location ()) -
428 = -
429 75-
430 ;-
431 return
executed 2 times by 1 test: return -1;
Executed by:
  • split
-1;
executed 2 times by 1 test: return -1;
Executed by:
  • split
2
432 }-
433-
434 cur += size;-
435 off_t end;-
436 if (usable_st_size (st)
usable_st_size (st)Description
TRUEevaluated 75 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& cur <= st->st_size
cur <= st->st_sizeDescription
TRUEevaluated 75 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
)
0-75
437 end = st->st_size;
executed 75 times by 1 test: end = st->st_size;
Executed by:
  • split
75
438 else-
439 {-
440 end = lseek (fd, 0, -
441 2-
442 );-
443 if (end < 0
end < 0Description
TRUEnever evaluated
FALSEnever evaluated
)
0
444 return
never executed: return -1;
-1;
never executed: return -1;
0
445 if (end != cur
end != curDescription
TRUEnever evaluated
FALSEnever evaluated
)
0
446 {-
447 if (lseek (fd, cur,
lseek (fd, cur, 0 ) < 0Description
TRUEnever evaluated
FALSEnever evaluated
0
448 0
lseek (fd, cur, 0 ) < 0Description
TRUEnever evaluated
FALSEnever evaluated
0
449 ) < 0
lseek (fd, cur, 0 ) < 0Description
TRUEnever evaluated
FALSEnever evaluated
)
0
450 return
never executed: return -1;
-1;
never executed: return -1;
0
451 if (end < cur
end < curDescription
TRUEnever evaluated
FALSEnever evaluated
)
0
452 end = cur;
never executed: end = cur;
0
453 }
never executed: end of block
0
454 }
never executed: end of block
0
455-
456 size += end - cur;-
457 if (size == ((off_t) (! (! ((off_t) 0 < (off_t) -1)) ? (off_t) -1 : ((((off_t) 1 << ((sizeof (off_t) * 8) - 2)) - 1) * 2 + 1)))
size == ((off_... 1) * 2 + 1)))Description
TRUEnever evaluated
FALSEevaluated 75 times by 1 test
Evaluated by:
  • split
)
0-75
458 {-
459-
460 -
461 (*__errno_location ()) -
462 = -
463 75-
464 ;-
465 return
never executed: return -1;
-1;
never executed: return -1;
0
466 }-
467-
468 return
executed 75 times by 1 test: return size;
Executed by:
  • split
size;
executed 75 times by 1 test: return size;
Executed by:
  • split
75
469}-
470-
471-
472-
473-
474static void-
475next_file_name (void)-
476{-
477-
478 static size_t *sufindex;-
479 static size_t outbase_length;-
480 static size_t outfile_length;-
481 static size_t addsuf_length;-
482-
483 if (! outfile
! outfileDescription
TRUEevaluated 342 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2115 times by 1 test
Evaluated by:
  • split
)
342-2115
484 {-
485 -
486 _Bool -
487 widen;-
488-
489new_name:
code before this statement executed 342 times by 1 test: new_name:
Executed by:
  • split
342
490 widen = !! outfile_length;-
491-
492 if (! widen
! widenDescription
TRUEevaluated 342 times by 1 test
Evaluated by:
  • split
FALSEevaluated 6 times by 1 test
Evaluated by:
  • split
)
6-342
493 {-
494-
495-
496 outbase_length = strlen (outbase);-
497 addsuf_length = additional_suffix
additional_suffixDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 335 times by 1 test
Evaluated by:
  • split
? strlen (additional_suffix) : 0;
7-335
498 outfile_length = outbase_length + suffix_length + addsuf_length;-
499 }
executed 342 times by 1 test: end of block
Executed by:
  • split
342
500 else-
501 {-
502-
503-
504-
505-
506-
507 outfile_length += 2;-
508 suffix_length++;-
509 }
executed 6 times by 1 test: end of block
Executed by:
  • split
6
510-
511 if (outfile_length + 1 < outbase_length
outfile_length...outbase_lengthDescription
TRUEnever evaluated
FALSEevaluated 348 times by 1 test
Evaluated by:
  • split
)
0-348
512 xalloc_die ();
never executed: xalloc_die ();
0
513 outfile = xrealloc (outfile, outfile_length + 1);-
514-
515 if (! widen
! widenDescription
TRUEevaluated 342 times by 1 test
Evaluated by:
  • split
FALSEevaluated 6 times by 1 test
Evaluated by:
  • split
)
6-342
516 memcpy (outfile, outbase, outbase_length);
executed 342 times by 1 test: memcpy (outfile, outbase, outbase_length);
Executed by:
  • split
342
517 else-
518 {-
519-
520 outfile[outbase_length] = suffix_alphabet[sufindex[0]];-
521 outbase_length++;-
522 }
executed 6 times by 1 test: end of block
Executed by:
  • split
6
523-
524 outfile_mid = outfile + outbase_length;-
525 memset (outfile_mid, suffix_alphabet[0], suffix_length);-
526 if (additional_suffix
additional_suffixDescription
TRUEevaluated 13 times by 1 test
Evaluated by:
  • split
FALSEevaluated 335 times by 1 test
Evaluated by:
  • split
)
13-335
527 memcpy (outfile_mid + suffix_length, additional_suffix, addsuf_length);
executed 13 times by 1 test: memcpy (outfile_mid + suffix_length, additional_suffix, addsuf_length);
Executed by:
  • split
13
528 outfile[outfile_length] = 0;-
529-
530 free (sufindex);-
531 sufindex = xcalloc (suffix_length, sizeof *sufindex);-
532-
533 if (numeric_suffix_start
numeric_suffix_startDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 344 times by 1 test
Evaluated by:
  • split
)
4-344
534 {-
535 -
536 ((-
537 ! widen-
538 ) ? (void) (0) : __assert_fail (-
539 "! widen"-
540 , "src/split.c", 408, __PRETTY_FUNCTION__))-
541 ;-
542-
543-
544 size_t i = strlen (numeric_suffix_start);-
545 memcpy (outfile_mid + suffix_length - i, numeric_suffix_start, i);-
546-
547-
548 size_t *sufindex_end = sufindex + suffix_length;-
549 while (i-- != 0
i-- != 0Description
TRUEevaluated 5 times by 1 test
Evaluated by:
  • split
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
)
4-5
550 *--
executed 5 times by 1 test: *--sufindex_end = numeric_suffix_start[i] - '0';
Executed by:
  • split
sufindex_end = numeric_suffix_start[i] - '0';
executed 5 times by 1 test: *--sufindex_end = numeric_suffix_start[i] - '0';
Executed by:
  • split
5
551 }
executed 4 times by 1 test: end of block
Executed by:
  • split
4
552 }
executed 348 times by 1 test: end of block
Executed by:
  • split
348
553 else-
554 {-
555-
556-
557 size_t i = suffix_length;-
558 while (i-- != 0
i-- != 0Description
TRUEevaluated 2189 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
)
2-2189
559 {-
560 sufindex[i]++;-
561 if (suffix_auto
suffix_autoDescription
TRUEevaluated 1270 times by 1 test
Evaluated by:
  • split
FALSEevaluated 919 times by 1 test
Evaluated by:
  • split
&& i == 0
i == 0Description
TRUEevaluated 58 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1212 times by 1 test
Evaluated by:
  • split
&& ! suffix_alphabet[sufindex[0] + 1]
! suffix_alpha...findex[0] + 1]Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • split
FALSEevaluated 52 times by 1 test
Evaluated by:
  • split
)
6-1270
562 goto
executed 6 times by 1 test: goto new_name;
Executed by:
  • split
new_name;
executed 6 times by 1 test: goto new_name;
Executed by:
  • split
6
563 outfile_mid[i] = suffix_alphabet[sufindex[i]];-
564 if (outfile_mid[i]
outfile_mid[i]Description
TRUEevaluated 2107 times by 1 test
Evaluated by:
  • split
FALSEevaluated 76 times by 1 test
Evaluated by:
  • split
)
76-2107
565 return;
executed 2107 times by 1 test: return;
Executed by:
  • split
2107
566 sufindex[i] = 0;-
567 outfile_mid[i] = suffix_alphabet[sufindex[i]];-
568 }
executed 76 times by 1 test: end of block
Executed by:
  • split
76
569 ((!!sizeof (struct { _Static_assert (-
570 1-
571 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"output file suffixes exhausted\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
572 1-
573 , 0, -
574 dcgettext (((void *)0), -
575 "output file suffixes exhausted"-
576 , 5)-
577 ), ((-
578 0-
579 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
580 1-
581 , 0, -
582 dcgettext (((void *)0), -
583 "output file suffixes exhausted"-
584 , 5)-
585 ), ((-
586 0-
587 ) ? (void) 0 : __builtin_unreachable ()))));-
588 }
never executed: end of block
0
589}-
590-
591-
592-
593static int-
594create (const char *name)-
595{-
596 if (!filter_command
!filter_commandDescription
TRUEevaluated 2316 times by 1 test
Evaluated by:
  • split
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
)
130-2316
597 {-
598 if (verbose
verboseDescription
TRUEevaluated 27 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2289 times by 1 test
Evaluated by:
  • split
)
27-2289
599 fprintf (
executed 27 times by 1 test: fprintf ( stdout , dcgettext (((void *)0), "creating file %s\n" , 5) , quotearg_style (shell_escape_always_quoting_style, name));
Executed by:
  • split
27
600 stdout
executed 27 times by 1 test: fprintf ( stdout , dcgettext (((void *)0), "creating file %s\n" , 5) , quotearg_style (shell_escape_always_quoting_style, name));
Executed by:
  • split
27
601 ,
executed 27 times by 1 test: fprintf ( stdout , dcgettext (((void *)0), "creating file %s\n" , 5) , quotearg_style (shell_escape_always_quoting_style, name));
Executed by:
  • split
27
602 dcgettext (((void *)0),
executed 27 times by 1 test: fprintf ( stdout , dcgettext (((void *)0), "creating file %s\n" , 5) , quotearg_style (shell_escape_always_quoting_style, name));
Executed by:
  • split
27
603 "creating file %s\n"
executed 27 times by 1 test: fprintf ( stdout , dcgettext (((void *)0), "creating file %s\n" , 5) , quotearg_style (shell_escape_always_quoting_style, name));
Executed by:
  • split
27
604 , 5)
executed 27 times by 1 test: fprintf ( stdout , dcgettext (((void *)0), "creating file %s\n" , 5) , quotearg_style (shell_escape_always_quoting_style, name));
Executed by:
  • split
27
605 , quotearg_style (shell_escape_always_quoting_style, name));
executed 27 times by 1 test: fprintf ( stdout , dcgettext (((void *)0), "creating file %s\n" , 5) , quotearg_style (shell_escape_always_quoting_style, name));
Executed by:
  • split
27
606-
607 int fd = open_safer (name, -
608 01 -
609 | -
610 0100 -
611 | -
612 0-
613 , (-
614 0400 -
615 | -
616 0200 -
617 | -
618 (0400 >> 3) -
619 | -
620 (0200 >> 3) -
621 | -
622 ((0400 >> 3) >> 3) -
623 | -
624 ((0200 >> 3) >> 3)-
625 ));-
626 if (fd < 0
fd < 0Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 2315 times by 1 test
Evaluated by:
  • split
)
1-2315
627 return
executed 1 time by 1 test: return fd;
Executed by:
  • split
fd;
executed 1 time by 1 test: return fd;
Executed by:
  • split
1
628 struct stat out_stat_buf;-
629 if (fstat (fd, &out_stat_buf) != 0
fstat (fd, &out_stat_buf) != 0Description
TRUEnever evaluated
FALSEevaluated 2315 times by 1 test
Evaluated by:
  • split
)
0-2315
630 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
631 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
632 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
633 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
634 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
635 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
636 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
637 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
638 "failed to stat %s"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
639 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
640 , quotearg_style (shell_escape_always_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
641 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
642 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
643 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
644 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
645 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
646 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
647 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
648 "failed to stat %s"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
649 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
650 , quotearg_style (shell_escape_always_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
651 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
652 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to stat %s\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ...ame)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to stat %s" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
653 if (((
(in_stat_buf)....at_buf).st_inoDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2311 times by 1 test
Evaluated by:
  • split
in_stat_buf).st_ino == (out_stat_buf).st_ino
(in_stat_buf)....at_buf).st_inoDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2311 times by 1 test
Evaluated by:
  • split
&& (
(in_stat_buf)....at_buf).st_devDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
in_stat_buf).st_dev == (out_stat_buf).st_dev
(in_stat_buf)....at_buf).st_devDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
))
0-2311
654 ((
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
!!sizeof (struct { _Static_assert (
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
655 1
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
656 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
657 1
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
658 , 0,
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
659 dcgettext (((void *)0),
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
660 "%s would overwrite input; aborting"
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
661 , 5)
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
662 , quotearg_style (shell_escape_always_quoting_style, name)), ((
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
663 0
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
664 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
665 1
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
666 , 0,
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
667 dcgettext (((void *)0),
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
668 "%s would overwrite input; aborting"
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
669 , 5)
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
670 , quotearg_style (shell_escape_always_quoting_style, name)), ((
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
671 0
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
672 ) ? (void) 0 : __builtin_unreachable ()))))
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
673 ;
executed 4 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"%s would overwrite input; aborting\", 5), quotearg_style (shell_escape_always_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((...e, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "%s would overwrite input; aborting" , 5) , quotearg_style (shell_escape_always_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
4
674 if (ftruncate (fd, 0) != 0
ftruncate (fd, 0) != 0Description
TRUEnever evaluated
FALSEevaluated 2311 times by 1 test
Evaluated by:
  • split
)
0-2311
675 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
676 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
677 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
678 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
679 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
680 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
681 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
682 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
683 "%s: error truncating"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
684 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
685 , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
686 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
687 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
688 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
689 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
690 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
691 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
692 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
693 "%s: error truncating"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
694 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
695 , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
696 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
697 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: error truncating\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dumm...(( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: error truncating" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
698-
699 return
executed 2311 times by 1 test: return fd;
Executed by:
  • split
fd;
executed 2311 times by 1 test: return fd;
Executed by:
  • split
2311
700 }-
701 else-
702 {-
703 int fd_pair[2];-
704 pid_t child_pid;-
705 char const *shell_prog = getenv ("SHELL");-
706 if (shell_prog ==
shell_prog == ((void *)0)Description
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
0-130
707 ((void *)0)
shell_prog == ((void *)0)Description
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
0-130
708 )-
709 shell_prog = "/bin/sh";
never executed: shell_prog = "/bin/sh";
0
710 if (setenv ("FILE", name, 1) != 0
setenv ("FILE", name, 1) != 0Description
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
)
0-130
711 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
712 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
713 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
714 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
715 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
716 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
717 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
718 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
719 "failed to set FILE environment variable"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
720 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
721 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
722 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
723 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
724 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
725 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
726 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
727 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
728 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
729 "failed to set FILE environment variable"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
730 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
731 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
732 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
733 ) ? (void) 0 : __builtin_unreachable ()))))
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
734 ;
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to set FILE environment variable\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to set FILE environment variable" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
735 if (verbose
verboseDescription
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
)
0-130
736 fprintf (
never executed: fprintf ( stdout , dcgettext (((void *)0), "executing with FILE=%s\n" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
737 stdout
never executed: fprintf ( stdout , dcgettext (((void *)0), "executing with FILE=%s\n" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
738 ,
never executed: fprintf ( stdout , dcgettext (((void *)0), "executing with FILE=%s\n" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
739 dcgettext (((void *)0),
never executed: fprintf ( stdout , dcgettext (((void *)0), "executing with FILE=%s\n" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
740 "executing with FILE=%s\n"
never executed: fprintf ( stdout , dcgettext (((void *)0), "executing with FILE=%s\n" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
741 , 5)
never executed: fprintf ( stdout , dcgettext (((void *)0), "executing with FILE=%s\n" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
742 , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
never executed: fprintf ( stdout , dcgettext (((void *)0), "executing with FILE=%s\n" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
743 if (pipe (fd_pair) != 0
pipe (fd_pair) != 0Description
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
)
0-130
744 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
745 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
746 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
747 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
748 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
749 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
750 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
751 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
752 "failed to create pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
753 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
754 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
755 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
756 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
757 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
758 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
759 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
760 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
761 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
762 "failed to create pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
763 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
764 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
765 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
766 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to create pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to create pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
767 child_pid = fork ();-
768 if (child_pid == 0
child_pid == 0Description
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
)
0-130
769 {-
770-
771-
772-
773 int j;-
774-
775-
776-
777-
778 for (j = 0; j < n_open_pipes
j < n_open_pipesDescription
TRUEnever evaluated
FALSEnever evaluated
; ++j)
0
779 if (close (open_pipes[j]) != 0
close (open_pipes[j]) != 0Description
TRUEnever evaluated
FALSEnever evaluated
)
0
780 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
781 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
782 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
783 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
784 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
785 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
786 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
787 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
788 "closing prior pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
789 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
790 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
791 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
792 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
793 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
794 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
795 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
796 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
797 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
798 "closing prior pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
799 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
800 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
801 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
802 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing prior pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing prior pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
803 if (close (fd_pair[1])
close (fd_pair[1])Description
TRUEnever evaluated
FALSEnever evaluated
)
0
804 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
805 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
806 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
807 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
808 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
809 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
810 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
811 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
812 "closing output pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
813 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
814 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
815 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
816 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
817 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
818 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
819 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
820 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
821 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
822 "closing output pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
823 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
824 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
825 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
826 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing output pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing output pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
827 if (fd_pair[0] !=
fd_pair[0] != 0Description
TRUEnever evaluated
FALSEnever evaluated
0
828 0
fd_pair[0] != 0Description
TRUEnever evaluated
FALSEnever evaluated
0
829 )-
830 {-
831 if (dup2 (fd_pair[0],
dup2 (fd_pair[0], 0 ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
0
832 0
dup2 (fd_pair[0], 0 ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
0
833 ) !=
dup2 (fd_pair[0], 0 ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
0
834 0
dup2 (fd_pair[0], 0 ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
0
835 )-
836 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
837 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
838 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
839 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
840 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
841 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
842 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
843 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
844 "moving input pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
845 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
846 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
847 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
848 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
849 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
850 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
851 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
852 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
853 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
854 "moving input pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
855 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
856 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
857 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
858 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"moving input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "moving input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
859 if (close (fd_pair[0]) != 0
close (fd_pair[0]) != 0Description
TRUEnever evaluated
FALSEnever evaluated
)
0
860 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
861 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
862 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
863 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
864 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
865 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
866 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
867 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
868 "closing input pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
869 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
870 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
871 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
872 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
873 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
874 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
875 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
876 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
877 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
878 "closing input pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
879 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
880 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
881 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
882 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"closing input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "closing input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
883 }
never executed: end of block
0
884 sigprocmask (-
885 2-
886 , &oldblocked, -
887 ((void *)0)-
888 );-
889 execl (shell_prog, last_component (shell_prog), "-c",-
890 filter_command, (char *) -
891 ((void *)0)-
892 );-
893 ((!!sizeof (struct { _Static_assert (-
894 1-
895 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to run command: \\\"%s -c %s\\\"\", 5), shell_prog, filter_command), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
896 1-
897 , -
898 (*__errno_location ())-
899 , -
900 dcgettext (((void *)0), -
901 "failed to run command: \"%s -c %s\""-
902 , 5)-
903 , shell_prog, filter_command), ((-
904 0-
905 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
906 1-
907 , -
908 (*__errno_location ())-
909 , -
910 dcgettext (((void *)0), -
911 "failed to run command: \"%s -c %s\""-
912 , 5)-
913 , shell_prog, filter_command), ((-
914 0-
915 ) ? (void) 0 : __builtin_unreachable ()))))-
916 ;-
917 }
never executed: end of block
0
918 if (child_pid == -1
child_pid == -1Description
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
)
0-130
919 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
920 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
921 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
922 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
923 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
924 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
925 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
926 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
927 "fork system call failed"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
928 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
929 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
930 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
931 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
932 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
933 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
934 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
935 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
936 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
937 "fork system call failed"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
938 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
939 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
940 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
941 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"fork system call failed\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "fork system call failed" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
942 if (close (fd_pair[0]) != 0
close (fd_pair[0]) != 0Description
TRUEnever evaluated
FALSEevaluated 130 times by 1 test
Evaluated by:
  • split
)
0-130
943 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
944 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
945 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
946 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
947 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
948 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
949 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
950 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
951 "failed to close input pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
952 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
953 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
954 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
955 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
956 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
957 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
958 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
959 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
960 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
961 "failed to close input pipe"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
962 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
963 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
964 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
965 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"failed to close input pipe\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "failed to close input pipe" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
966 filter_pid = child_pid;-
967 if (n_open_pipes == open_pipes_alloc
n_open_pipes =...en_pipes_allocDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 123 times by 1 test
Evaluated by:
  • split
)
7-123
968 open_pipes = x2nrealloc (open_pipes, &open_pipes_alloc,
executed 7 times by 1 test: open_pipes = x2nrealloc (open_pipes, &open_pipes_alloc, sizeof *open_pipes);
Executed by:
  • split
7
969 sizeof *open_pipes);
executed 7 times by 1 test: open_pipes = x2nrealloc (open_pipes, &open_pipes_alloc, sizeof *open_pipes);
Executed by:
  • split
7
970 open_pipes[n_open_pipes++] = fd_pair[1];-
971 return
executed 130 times by 1 test: return fd_pair[1];
Executed by:
  • split
fd_pair[1];
executed 130 times by 1 test: return fd_pair[1];
Executed by:
  • split
130
972 }-
973}-
974-
975-
976-
977-
978static void-
979closeout (FILE *fp, int fd, pid_t pid, char const *name)-
980{-
981 if (fp !=
fp != ((void *)0)Description
TRUEevaluated 138 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2679 times by 1 test
Evaluated by:
  • split
138-2679
982 ((void *)0)
fp != ((void *)0)Description
TRUEevaluated 138 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2679 times by 1 test
Evaluated by:
  • split
138-2679
983 && -
984 rpl_fclose
rpl_fclose (fp) != 0Description
TRUEnever evaluated
FALSEevaluated 138 times by 1 test
Evaluated by:
  • split
0-138
985 (fp) != 0
rpl_fclose (fp) != 0Description
TRUEnever evaluated
FALSEevaluated 138 times by 1 test
Evaluated by:
  • split
&& ! ignorable (
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
0-138
986 (*__errno_location ())
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
0
987 )
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
)
0
988 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
989 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
990 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
991 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
992 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
993 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
994 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
995 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
996 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
997 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
998 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
999 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1000 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1001 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1002 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1003 if (fd >= 0
fd >= 0Description
TRUEevaluated 2410 times by 1 test
Evaluated by:
  • split
FALSEevaluated 407 times by 1 test
Evaluated by:
  • split
)
407-2410
1004 {-
1005 if (fp ==
fp == ((void *)0)Description
TRUEevaluated 2272 times by 1 test
Evaluated by:
  • split
FALSEevaluated 138 times by 1 test
Evaluated by:
  • split
138-2272
1006 ((void *)0)
fp == ((void *)0)Description
TRUEevaluated 2272 times by 1 test
Evaluated by:
  • split
FALSEevaluated 138 times by 1 test
Evaluated by:
  • split
138-2272
1007 && close (fd) < 0
close (fd) < 0Description
TRUEnever evaluated
FALSEevaluated 2272 times by 1 test
Evaluated by:
  • split
)
0-2272
1008 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1009 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1010 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1011 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1012 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1013 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1014 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1015 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1016 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1017 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1018 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1019 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1020 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1021 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1022 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) ...e_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1023 int j;-
1024 for (j = 0; j < n_open_pipes
j < n_open_pipesDescription
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2281 times by 1 test
Evaluated by:
  • split
; ++j)
131-2281
1025 {-
1026 if (open_pipes[j] == fd
open_pipes[j] == fdDescription
TRUEevaluated 129 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
)
2-129
1027 {-
1028 open_pipes[j] = open_pipes[--n_open_pipes];-
1029 break;
executed 129 times by 1 test: break;
Executed by:
  • split
129
1030 }-
1031 }
executed 2 times by 1 test: end of block
Executed by:
  • split
2
1032 }
executed 2410 times by 1 test: end of block
Executed by:
  • split
2410
1033 if (pid > 0
pid > 0Description
TRUEevaluated 129 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2688 times by 1 test
Evaluated by:
  • split
)
129-2688
1034 {-
1035 int wstatus = 0;-
1036 if (waitpid (pid, &wstatus, 0) == -1
waitpid (pid, ...atus, 0) == -1Description
TRUEnever evaluated
FALSEevaluated 128 times by 1 test
Evaluated by:
  • split
&&
0-128
1037 (*
(*__errno_location ()) != 10Description
TRUEnever evaluated
FALSEnever evaluated
__errno_location ())
(*__errno_location ()) != 10Description
TRUEnever evaluated
FALSEnever evaluated
0
1038 !=
(*__errno_location ()) != 10Description
TRUEnever evaluated
FALSEnever evaluated
0
1039 10
(*__errno_location ()) != 10Description
TRUEnever evaluated
FALSEnever evaluated
0
1040 )-
1041 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1042 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1043 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1044 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1045 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1046 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1047 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1048 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1049 "waiting for child process"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1050 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1051 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1052 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1053 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1054 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1055 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1056 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1057 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1058 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1059 "waiting for child process"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1060 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1061 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1062 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1063 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"waiting for child process\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "waiting for child process" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1064 if (-
1065 (((
(((signed char... 1) >> 1) > 0)Description
TRUEnever evaluated
FALSEevaluated 128 times by 1 test
Evaluated by:
  • split
signed char) (((
(((signed char... 1) >> 1) > 0)Description
TRUEnever evaluated
FALSEevaluated 128 times by 1 test
Evaluated by:
  • split
0-128
1066 wstatus
(((signed char... 1) >> 1) > 0)Description
TRUEnever evaluated
FALSEevaluated 128 times by 1 test
Evaluated by:
  • split
0-128
1067 ) & 0x7f) + 1) >> 1) > 0)
(((signed char... 1) >> 1) > 0)Description
TRUEnever evaluated
FALSEevaluated 128 times by 1 test
Evaluated by:
  • split
0-128
1068 )-
1069 {-
1070 int sig = -
1071 ((-
1072 wstatus-
1073 ) & 0x7f)-
1074 ;-
1075 if (sig !=
sig != 13Description
TRUEnever evaluated
FALSEnever evaluated
0
1076 13
sig != 13Description
TRUEnever evaluated
FALSEnever evaluated
0
1077 )-
1078 {-
1079 char signame[-
1080 (((-
1081 (sizeof "SIGRTMAX" + (((((sizeof (int) * 8) - (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) - 1)-
1082 )>(-
1083 ((((((sizeof (int) * 8) - (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) + 1)-
1084 ))?(-
1085 (sizeof "SIGRTMAX" + (((((sizeof (int) * 8) - (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) - 1)-
1086 ):(-
1087 ((((((sizeof (int) * 8) - (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (int)) 0 < (__typeof__ (int)) -1))) + 1)-
1088 ))-
1089 ];-
1090 if (sig2str (sig, signame) != 0
sig2str (sig, signame) != 0Description
TRUEnever evaluated
FALSEnever evaluated
)
0
1091 sprintf (signame, "%d", sig);
never executed: sprintf (signame, "%d", sig);
0
1092 error (sig + 128, 0,-
1093 -
1094 dcgettext (((void *)0), -
1095 "with FILE=%s, signal %s from command: %s"-
1096 , 5)-
1097 ,-
1098 quotearg_n_style_colon (0, shell_escape_quoting_style, name), signame, filter_command);-
1099 }
never executed: end of block
0
1100 }
never executed: end of block
0
1101 else if (-
1102 (((
((( wstatus ) & 0x7f) == 0)Description
TRUEevaluated 128 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-128
1103 wstatus
((( wstatus ) & 0x7f) == 0)Description
TRUEevaluated 128 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-128
1104 ) & 0x7f) == 0)
((( wstatus ) & 0x7f) == 0)Description
TRUEevaluated 128 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-128
1105 )-
1106 {-
1107 int ex = -
1108 (((-
1109 wstatus-
1110 ) & 0xff00) >> 8)-
1111 ;-
1112 if (ex != 0
ex != 0Description
TRUEnever evaluated
FALSEevaluated 128 times by 1 test
Evaluated by:
  • split
)
0-128
1113 error (ex, 0,
never executed: error (ex, 0, dcgettext (((void *)0), "with FILE=%s, exit %d from command: %s" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name), ex, filter_command);
0
1114 dcgettext (((void *)0),
never executed: error (ex, 0, dcgettext (((void *)0), "with FILE=%s, exit %d from command: %s" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name), ex, filter_command);
0
1115 "with FILE=%s, exit %d from command: %s"
never executed: error (ex, 0, dcgettext (((void *)0), "with FILE=%s, exit %d from command: %s" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name), ex, filter_command);
0
1116 , 5)
never executed: error (ex, 0, dcgettext (((void *)0), "with FILE=%s, exit %d from command: %s" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name), ex, filter_command);
0
1117 ,
never executed: error (ex, 0, dcgettext (((void *)0), "with FILE=%s, exit %d from command: %s" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name), ex, filter_command);
0
1118 quotearg_n_style_colon (0, shell_escape_quoting_style, name), ex, filter_command);
never executed: error (ex, 0, dcgettext (((void *)0), "with FILE=%s, exit %d from command: %s" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, name), ex, filter_command);
0
1119 }
executed 128 times by 1 test: end of block
Executed by:
  • split
128
1120 else-
1121 {-
1122-
1123 ((!!sizeof (struct { _Static_assert (-
1124 1-
1125 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"unknown status from command (0x%X)\", 5), wstatus + 0u), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
1126 1-
1127 , 0, -
1128 dcgettext (((void *)0), -
1129 "unknown status from command (0x%X)"-
1130 , 5)-
1131 , wstatus + 0u), ((-
1132 0-
1133 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
1134 1-
1135 , 0, -
1136 dcgettext (((void *)0), -
1137 "unknown status from command (0x%X)"-
1138 , 5)-
1139 , wstatus + 0u), ((-
1140 0-
1141 ) ? (void) 0 : __builtin_unreachable ()))))-
1142 ;-
1143 }
never executed: end of block
0
1144 }-
1145}
executed 2816 times by 1 test: end of block
Executed by:
  • split
2816
1146-
1147-
1148-
1149-
1150-
1151-
1152static -
1153 _Bool-
1154-
1155cwrite (-
1156 _Bool -
1157 new_file_flag, const char *bp, size_t bytes)-
1158{-
1159 if (new_file_flag
new_file_flagDescription
TRUEevaluated 2370 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1659 times by 1 test
Evaluated by:
  • split
)
1659-2370
1160 {-
1161 if (!bp
!bpDescription
TRUEevaluated 171 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2199 times by 1 test
Evaluated by:
  • split
&& bytes == 0
bytes == 0Description
TRUEevaluated 171 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& elide_empty_files
elide_empty_filesDescription
TRUEevaluated 90 times by 1 test
Evaluated by:
  • split
FALSEevaluated 81 times by 1 test
Evaluated by:
  • split
)
0-2199
1162 return
executed 90 times by 1 test: return 1 ;
Executed by:
  • split
executed 90 times by 1 test: return 1 ;
Executed by:
  • split
90
1163 1
executed 90 times by 1 test: return 1 ;
Executed by:
  • split
90
1164 ;
executed 90 times by 1 test: return 1 ;
Executed by:
  • split
90
1165 closeout (-
1166 ((void *)0)-
1167 , output_desc, filter_pid, outfile);-
1168 next_file_name ();-
1169 output_desc = create (outfile);-
1170 if (output_desc < 0
output_desc < 0Description
TRUEnever evaluated
FALSEevaluated 2273 times by 1 test
Evaluated by:
  • split
)
0-2273
1171 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1172 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1173 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1174 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1175 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1176 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1177 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1178 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1179 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1180 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1181 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1182 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1183 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1184 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1185 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1186 }
executed 2273 times by 1 test: end of block
Executed by:
  • split
2273
1187-
1188 if (full_write (output_desc, bp, bytes) == bytes
full_write (ou...ytes) == bytesDescription
TRUEevaluated 3876 times by 1 test
Evaluated by:
  • split
FALSEevaluated 55 times by 1 test
Evaluated by:
  • split
)
55-3876
1189 return
executed 3876 times by 1 test: return 1 ;
Executed by:
  • split
executed 3876 times by 1 test: return 1 ;
Executed by:
  • split
3876
1190 1
executed 3876 times by 1 test: return 1 ;
Executed by:
  • split
3876
1191 ;
executed 3876 times by 1 test: return 1 ;
Executed by:
  • split
3876
1192 else-
1193 {-
1194 if (! ignorable (
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEevaluated 55 times by 1 test
Evaluated by:
  • split
0-55
1195 (*__errno_location ())
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEevaluated 55 times by 1 test
Evaluated by:
  • split
0-55
1196 )
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEevaluated 55 times by 1 test
Evaluated by:
  • split
)
0-55
1197 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1198 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1199 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1200 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1201 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1202 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1203 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1204 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1205 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1206 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1207 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1208 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1209 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1210 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1211 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, outfile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1212 return
executed 55 times by 1 test: return 0 ;
Executed by:
  • split
executed 55 times by 1 test: return 0 ;
Executed by:
  • split
55
1213 0
executed 55 times by 1 test: return 0 ;
Executed by:
  • split
55
1214 ;
executed 55 times by 1 test: return 0 ;
Executed by:
  • split
55
1215 }-
1216}-
1217-
1218-
1219-
1220-
1221-
1222static void-
1223bytes_split (uintmax_t n_bytes, char *buf, size_t bufsize, size_t initial_read,-
1224 uintmax_t max_files)-
1225{-
1226 size_t n_read;-
1227 -
1228 _Bool -
1229 new_file_flag = -
1230 1-
1231 ;-
1232 -
1233 _Bool -
1234 filter_ok = -
1235 1-
1236 ;-
1237 uintmax_t to_write = n_bytes;-
1238 uintmax_t opened = 0;-
1239 -
1240 _Bool -
1241 eof;-
1242-
1243 do-
1244 {-
1245 if (initial_read !=
initial_read !...73709551615UL)Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2523 times by 1 test
Evaluated by:
  • split
6-2523
1246 (18446744073709551615UL)
initial_read !...73709551615UL)Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2523 times by 1 test
Evaluated by:
  • split
6-2523
1247 )-
1248 {-
1249 n_read = initial_read;-
1250 initial_read = -
1251 (18446744073709551615UL)-
1252 ;-
1253 eof = n_read < bufsize;-
1254 }
executed 6 times by 1 test: end of block
Executed by:
  • split
6
1255 else-
1256 {-
1257 if (! filter_ok
! filter_okDescription
TRUEevaluated 2459 times by 1 test
Evaluated by:
  • split
FALSEevaluated 64 times by 1 test
Evaluated by:
  • split
64-2459
1258 && lseek (
lseek ( 0 , to...ite, 1 ) != -1Description
TRUEnever evaluated
FALSEevaluated 2459 times by 1 test
Evaluated by:
  • split
0-2459
1259 0
lseek ( 0 , to...ite, 1 ) != -1Description
TRUEnever evaluated
FALSEevaluated 2459 times by 1 test
Evaluated by:
  • split
0-2459
1260 , to_write,
lseek ( 0 , to...ite, 1 ) != -1Description
TRUEnever evaluated
FALSEevaluated 2459 times by 1 test
Evaluated by:
  • split
0-2459
1261 1
lseek ( 0 , to...ite, 1 ) != -1Description
TRUEnever evaluated
FALSEevaluated 2459 times by 1 test
Evaluated by:
  • split
0-2459
1262 ) != -1
lseek ( 0 , to...ite, 1 ) != -1Description
TRUEnever evaluated
FALSEevaluated 2459 times by 1 test
Evaluated by:
  • split
)
0-2459
1263 {-
1264 to_write = n_bytes;-
1265 new_file_flag = -
1266 1-
1267 ;-
1268 }
never executed: end of block
0
1269-
1270 n_read = safe_read (-
1271 0-
1272 , buf, bufsize);-
1273 if (n_read == ((size_t) -1)
n_read == ((size_t) -1)Description
TRUEnever evaluated
FALSEevaluated 2523 times by 1 test
Evaluated by:
  • split
)
0-2523
1274 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1275 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1276 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1277 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1278 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1279 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1280 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1281 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1282 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1283 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1284 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1285 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1286 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1287 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1288 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1289 eof = n_read == 0;-
1290 }
executed 2523 times by 1 test: end of block
Executed by:
  • split
2523
1291 char *bp_out = buf;-
1292 while (to_write <= n_read
to_write <= n_readDescription
TRUEevaluated 739 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2526 times by 1 test
Evaluated by:
  • split
)
739-2526
1293 {-
1294 if (filter_ok
filter_okDescription
TRUEevaluated 685 times by 1 test
Evaluated by:
  • split
FALSEevaluated 54 times by 1 test
Evaluated by:
  • split
|| new_file_flag
new_file_flagDescription
TRUEnever evaluated
FALSEevaluated 54 times by 1 test
Evaluated by:
  • split
)
0-685
1295 filter_ok = cwrite (new_file_flag, bp_out, to_write);
executed 685 times by 1 test: filter_ok = cwrite (new_file_flag, bp_out, to_write);
Executed by:
  • split
685
1296 opened += new_file_flag;-
1297 new_file_flag = !max_files
!max_filesDescription
TRUEevaluated 728 times by 1 test
Evaluated by:
  • split
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
|| (
(opened < max_files)Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
opened < max_files)
(opened < max_files)Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
;
2-728
1298 if (! filter_ok
! filter_okDescription
TRUEevaluated 54 times by 1 test
Evaluated by:
  • split
FALSEevaluated 682 times by 1 test
Evaluated by:
  • split
&& ! new_file_flag
! new_file_flagDescription
TRUEnever evaluated
FALSEevaluated 54 times by 1 test
Evaluated by:
  • split
)
0-682
1299 {-
1300-
1301 n_read = 0;-
1302 eof = -
1303 1-
1304 ;-
1305 break;
never executed: break;
0
1306 }-
1307 bp_out += to_write;-
1308 n_read -= to_write;-
1309 to_write = n_bytes;-
1310 }
executed 736 times by 1 test: end of block
Executed by:
  • split
736
1311 if (n_read != 0
n_read != 0Description
TRUEevaluated 2504 times by 1 test
Evaluated by:
  • split
FALSEevaluated 22 times by 1 test
Evaluated by:
  • split
)
22-2504
1312 {-
1313 if (filter_ok
filter_okDescription
TRUEevaluated 46 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2458 times by 1 test
Evaluated by:
  • split
|| new_file_flag
new_file_flagDescription
TRUEevaluated 54 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2404 times by 1 test
Evaluated by:
  • split
)
46-2458
1314 filter_ok = cwrite (new_file_flag, bp_out, n_read);
executed 100 times by 1 test: filter_ok = cwrite (new_file_flag, bp_out, n_read);
Executed by:
  • split
100
1315 opened += new_file_flag;-
1316 new_file_flag = -
1317 0-
1318 ;-
1319 if (! filter_ok
! filter_okDescription
TRUEevaluated 2459 times by 1 test
Evaluated by:
  • split
FALSEevaluated 44 times by 1 test
Evaluated by:
  • split
&& opened == max_files
opened == max_filesDescription
TRUEnever evaluated
FALSEevaluated 2459 times by 1 test
Evaluated by:
  • split
)
0-2459
1320 {-
1321-
1322 break;
never executed: break;
0
1323 }-
1324 to_write -= n_read;-
1325 }
executed 2503 times by 1 test: end of block
Executed by:
  • split
2503
1326 }
executed 2525 times by 1 test: end of block
Executed by:
  • split
2525
1327 while (! eof
! eofDescription
TRUEevaluated 2509 times by 1 test
Evaluated by:
  • split
FALSEevaluated 16 times by 1 test
Evaluated by:
  • split
);
16-2509
1328-
1329-
1330-
1331-
1332 while (opened++ < max_files
opened++ < max_filesDescription
TRUEevaluated 31 times by 1 test
Evaluated by:
  • split
FALSEevaluated 16 times by 1 test
Evaluated by:
  • split
)
16-31
1333 cwrite (
executed 31 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
31
1334 1
executed 31 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
31
1335 ,
executed 31 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
31
1336 ((void *)0)
executed 31 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
31
1337 , 0);
executed 31 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
31
1338}
executed 16 times by 1 test: end of block
Executed by:
  • split
16
1339-
1340-
1341-
1342-
1343static void-
1344lines_split (uintmax_t n_lines, char *buf, size_t bufsize)-
1345{-
1346 size_t n_read;-
1347 char *bp, *bp_out, *eob;-
1348 -
1349 _Bool -
1350 new_file_flag = -
1351 1-
1352 ;-
1353 uintmax_t n = 0;-
1354-
1355 do-
1356 {-
1357 n_read = safe_read (-
1358 0-
1359 , buf, bufsize);-
1360 if (n_read == ((size_t) -1)
n_read == ((size_t) -1)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 33 times by 1 test
Evaluated by:
  • split
)
1-33
1361 ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
!!sizeof (struct { _Static_assert (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1362 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1363 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1364 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1365 ,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1366 (*__errno_location ())
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1367 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1368 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1369 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1370 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1371 ,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1372 (*__errno_location ())
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1373 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1374 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1375 ) ? (void) 0 : __builtin_unreachable ()))));
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • split
1
1376 bp = bp_out = buf;-
1377 eob = bp + n_read;-
1378 *eob = eolchar;-
1379 while (-
1380 1-
1381 )-
1382 {-
1383 bp = memchr (bp, eolchar, eob - bp + 1);-
1384 if (bp == eob
bp == eobDescription
TRUEevaluated 33 times by 1 test
Evaluated by:
  • split
FALSEevaluated 66 times by 1 test
Evaluated by:
  • split
)
33-66
1385 {-
1386 if (eob != bp_out
eob != bp_outDescription
TRUEevaluated 14 times by 1 test
Evaluated by:
  • split
FALSEevaluated 19 times by 1 test
Evaluated by:
  • split
)
14-19
1387 {-
1388 size_t len = eob - bp_out;-
1389 cwrite (new_file_flag, bp_out, len);-
1390 new_file_flag = -
1391 0-
1392 ;-
1393 }
executed 14 times by 1 test: end of block
Executed by:
  • split
14
1394 break;
executed 33 times by 1 test: break;
Executed by:
  • split
33
1395 }-
1396-
1397 ++bp;-
1398 if (++
++n >= n_linesDescription
TRUEevaluated 26 times by 1 test
Evaluated by:
  • split
FALSEevaluated 40 times by 1 test
Evaluated by:
  • split
n >= n_lines
++n >= n_linesDescription
TRUEevaluated 26 times by 1 test
Evaluated by:
  • split
FALSEevaluated 40 times by 1 test
Evaluated by:
  • split
)
26-40
1399 {-
1400 cwrite (new_file_flag, bp_out, bp - bp_out);-
1401 bp_out = bp;-
1402 new_file_flag = -
1403 1-
1404 ;-
1405 n = 0;-
1406 }
executed 26 times by 1 test: end of block
Executed by:
  • split
26
1407 }
executed 66 times by 1 test: end of block
Executed by:
  • split
66
1408 }
executed 33 times by 1 test: end of block
Executed by:
  • split
33
1409 while (n_read
n_readDescription
TRUEevaluated 14 times by 1 test
Evaluated by:
  • split
FALSEevaluated 19 times by 1 test
Evaluated by:
  • split
);
14-19
1410}
executed 19 times by 1 test: end of block
Executed by:
  • split
19
1411-
1412-
1413-
1414-
1415-
1416static void-
1417line_bytes_split (uintmax_t n_bytes, char *buf, size_t bufsize)-
1418{-
1419 size_t n_read;-
1420 uintmax_t n_out = 0;-
1421 size_t n_hold = 0;-
1422 char *hold = -
1423 ((void *)0)-
1424 ;-
1425 size_t hold_size = 0;-
1426 -
1427 _Bool -
1428 split_line = -
1429 0-
1430 ;-
1431-
1432 do-
1433 {-
1434 n_read = safe_read (-
1435 0-
1436 , buf, bufsize);-
1437 if (n_read == ((size_t) -1)
n_read == ((size_t) -1)Description
TRUEnever evaluated
FALSEevaluated 970 times by 1 test
Evaluated by:
  • split
)
0-970
1438 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1439 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1440 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1441 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1442 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1443 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1444 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1445 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1446 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1447 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1448 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1449 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1450 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1451 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1452 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1453 size_t n_left = n_read;-
1454 char *sob = buf;-
1455 while (n_left
n_leftDescription
TRUEevaluated 1098 times by 1 test
Evaluated by:
  • split
FALSEevaluated 966 times by 1 test
Evaluated by:
  • split
)
966-1098
1456 {-
1457 size_t split_rest = 0;-
1458 char *eoc = -
1459 ((void *)0)-
1460 ;-
1461 char *eol;-
1462-
1463-
1464-
1465 if (n_bytes - n_out - n_hold <= n_left
n_bytes - n_ou...hold <= n_leftDescription
TRUEevaluated 588 times by 1 test
Evaluated by:
  • split
FALSEevaluated 510 times by 1 test
Evaluated by:
  • split
)
510-588
1466 {-
1467-
1468 split_rest = n_bytes - n_out - n_hold;-
1469 eoc = sob + split_rest - 1;-
1470 eol = memrchr (sob, eolchar, split_rest);-
1471 }
executed 588 times by 1 test: end of block
Executed by:
  • split
588
1472 else-
1473 eol = memrchr (sob, eolchar, n_left);
executed 510 times by 1 test: eol = memrchr (sob, eolchar, n_left);
Executed by:
  • split
510
1474-
1475-
1476 if (n_hold
n_holdDescription
TRUEevaluated 165 times by 1 test
Evaluated by:
  • split
FALSEevaluated 933 times by 1 test
Evaluated by:
  • split
&& !(!eol
!eolDescription
TRUEevaluated 63 times by 1 test
Evaluated by:
  • split
FALSEevaluated 102 times by 1 test
Evaluated by:
  • split
&& n_out
n_outDescription
TRUEevaluated 39 times by 1 test
Evaluated by:
  • split
FALSEevaluated 24 times by 1 test
Evaluated by:
  • split
))
24-933
1477 {-
1478 cwrite (n_out == 0, hold, n_hold);-
1479 n_out += n_hold;-
1480 if (n_hold > bufsize
n_hold > bufsizeDescription
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 105 times by 1 test
Evaluated by:
  • split
)
21-105
1481 hold = xrealloc (hold, bufsize);
executed 21 times by 1 test: hold = xrealloc (hold, bufsize);
Executed by:
  • split
21
1482 n_hold = 0;-
1483 hold_size = bufsize;-
1484 }
executed 126 times by 1 test: end of block
Executed by:
  • split
126
1485-
1486-
1487 if (eol
eolDescription
TRUEevaluated 313 times by 1 test
Evaluated by:
  • split
FALSEevaluated 785 times by 1 test
Evaluated by:
  • split
)
313-785
1488 {-
1489 split_line = -
1490 1-
1491 ;-
1492 size_t n_write = eol - sob + 1;-
1493 cwrite (n_out == 0, sob, n_write);-
1494 n_out += n_write;-
1495 n_left -= n_write;-
1496 sob += n_write;-
1497 if (eoc
eocDescription
TRUEevaluated 172 times by 1 test
Evaluated by:
  • split
FALSEevaluated 137 times by 1 test
Evaluated by:
  • split
)
137-172
1498 split_rest -= n_write;
executed 172 times by 1 test: split_rest -= n_write;
Executed by:
  • split
172
1499 }
executed 309 times by 1 test: end of block
Executed by:
  • split
309
1500-
1501-
1502 if (n_left
n_leftDescription
TRUEevaluated 1010 times by 1 test
Evaluated by:
  • split
FALSEevaluated 84 times by 1 test
Evaluated by:
  • split
&& !split_line
!split_lineDescription
TRUEevaluated 692 times by 1 test
Evaluated by:
  • split
FALSEevaluated 318 times by 1 test
Evaluated by:
  • split
)
84-1010
1503 {-
1504 size_t n_write = eoc
eocDescription
TRUEevaluated 381 times by 1 test
Evaluated by:
  • split
FALSEevaluated 311 times by 1 test
Evaluated by:
  • split
? split_rest : n_left;
311-381
1505 cwrite (n_out == 0, sob, n_write);-
1506 n_out += n_write;-
1507 n_left -= n_write;-
1508 sob += n_write;-
1509 if (eoc
eocDescription
TRUEevaluated 381 times by 1 test
Evaluated by:
  • split
FALSEevaluated 311 times by 1 test
Evaluated by:
  • split
)
311-381
1510 split_rest -= n_write;
executed 381 times by 1 test: split_rest -= n_write;
Executed by:
  • split
381
1511 }
executed 692 times by 1 test: end of block
Executed by:
  • split
692
1512-
1513-
1514 if ((eoc
eocDescription
TRUEevaluated 584 times by 1 test
Evaluated by:
  • split
FALSEevaluated 510 times by 1 test
Evaluated by:
  • split
&& split_rest
split_restDescription
TRUEevaluated 110 times by 1 test
Evaluated by:
  • split
FALSEevaluated 474 times by 1 test
Evaluated by:
  • split
) || (!eoc
!eocDescription
TRUEevaluated 510 times by 1 test
Evaluated by:
  • split
FALSEevaluated 474 times by 1 test
Evaluated by:
  • split
&& n_left
n_leftDescription
TRUEevaluated 135 times by 1 test
Evaluated by:
  • split
FALSEevaluated 375 times by 1 test
Evaluated by:
  • split
))
110-584
1515 {-
1516 size_t n_buf = eoc
eocDescription
TRUEevaluated 110 times by 1 test
Evaluated by:
  • split
FALSEevaluated 135 times by 1 test
Evaluated by:
  • split
? split_rest : n_left;
110-135
1517 if (hold_size - n_hold < n_buf
hold_size - n_hold < n_bufDescription
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEevaluated 114 times by 1 test
Evaluated by:
  • split
)
114-131
1518 {-
1519 if (hold_size <=
hold_size <= (...5UL) - bufsizeDescription
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-131
1520 (18446744073709551615UL)
hold_size <= (...5UL) - bufsizeDescription
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-131
1521 - bufsize
hold_size <= (...5UL) - bufsizeDescription
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
)
0-131
1522 hold_size += bufsize;
executed 131 times by 1 test: hold_size += bufsize;
Executed by:
  • split
131
1523 else-
1524 xalloc_die ();
never executed: xalloc_die ();
0
1525 hold = xrealloc (hold, hold_size);-
1526 }
executed 131 times by 1 test: end of block
Executed by:
  • split
131
1527 memcpy (hold + n_hold, sob, n_buf);-
1528 n_hold += n_buf;-
1529 n_left -= n_buf;-
1530 sob += n_buf;-
1531 }
executed 245 times by 1 test: end of block
Executed by:
  • split
245
1532-
1533-
1534 if (eoc
eocDescription
TRUEevaluated 584 times by 1 test
Evaluated by:
  • split
FALSEevaluated 510 times by 1 test
Evaluated by:
  • split
)
510-584
1535 {-
1536 n_out = 0;-
1537 split_line = -
1538 0-
1539 ;-
1540 }
executed 584 times by 1 test: end of block
Executed by:
  • split
584
1541 }
executed 1094 times by 1 test: end of block
Executed by:
  • split
1094
1542 }
executed 966 times by 1 test: end of block
Executed by:
  • split
966
1543 while (n_read
n_readDescription
TRUEevaluated 733 times by 1 test
Evaluated by:
  • split
FALSEevaluated 233 times by 1 test
Evaluated by:
  • split
);
233-733
1544-
1545-
1546 if (n_hold
n_holdDescription
TRUEevaluated 80 times by 1 test
Evaluated by:
  • split
FALSEevaluated 153 times by 1 test
Evaluated by:
  • split
)
80-153
1547 cwrite (n_out == 0, hold, n_hold);
executed 80 times by 1 test: cwrite (n_out == 0, hold, n_hold);
Executed by:
  • split
80
1548-
1549 free (hold);-
1550}
executed 233 times by 1 test: end of block
Executed by:
  • split
233
1551static void-
1552lines_chunk_split (uintmax_t k, uintmax_t n, char *buf, size_t bufsize,-
1553 size_t initial_read, off_t file_size)-
1554{-
1555 -
1556 ((-
1557 n && k <= n && n <= file_size-
1558 ) ? (void) (0) : __assert_fail (-
1559 "n && k <= n && n <= file_size"-
1560 , "src/split.c", 865, __PRETTY_FUNCTION__))-
1561 ;-
1562-
1563 const off_t chunk_size = file_size / n;-
1564 uintmax_t chunk_no = 1;-
1565 off_t chunk_end = chunk_size - 1;-
1566 off_t n_written = 0;-
1567 -
1568 _Bool -
1569 new_file_flag = -
1570 1-
1571 ;-
1572 -
1573 _Bool -
1574 chunk_truncated = -
1575 0-
1576 ;-
1577-
1578 if (k > 1
k > 1Description
TRUEevaluated 34 times by 1 test
Evaluated by:
  • split
FALSEevaluated 68 times by 1 test
Evaluated by:
  • split
)
34-68
1579 {-
1580-
1581 off_t start = (k - 1) * chunk_size - 1;-
1582 if (start < initial_read
start < initial_readDescription
TRUEevaluated 20 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
)
14-20
1583 {-
1584 memmove (buf, buf + start, initial_read - start);-
1585 initial_read -= start;-
1586 }
executed 20 times by 1 test: end of block
Executed by:
  • split
20
1587 else-
1588 {-
1589 if (lseek (
lseek ( 0 , st..._read, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
0-14
1590 0
lseek ( 0 , st..._read, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
0-14
1591 , start - initial_read,
lseek ( 0 , st..._read, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
0-14
1592 1
lseek ( 0 , st..._read, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
0-14
1593 ) < 0
lseek ( 0 , st..._read, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
)
0-14
1594 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1595 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1596 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1597 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1598 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1599 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1600 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1601 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1602 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1603 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1604 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1605 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1606 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1607 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1608 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1609 initial_read = -
1610 (18446744073709551615UL)-
1611 ;-
1612 }
executed 14 times by 1 test: end of block
Executed by:
  • split
14
1613 n_written = start;-
1614 chunk_no = k - 1;-
1615 chunk_end = chunk_no * chunk_size - 1;-
1616 }
executed 34 times by 1 test: end of block
Executed by:
  • split
34
1617-
1618 while (n_written < file_size
n_written < file_sizeDescription
TRUEevaluated 1588 times by 1 test
Evaluated by:
  • split
FALSEevaluated 67 times by 1 test
Evaluated by:
  • split
)
67-1588
1619 {-
1620 char *bp = buf, *eob;-
1621 size_t n_read;-
1622 if (initial_read !=
initial_read !...73709551615UL)Description
TRUEevaluated 88 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1500 times by 1 test
Evaluated by:
  • split
88-1500
1623 (18446744073709551615UL)
initial_read !...73709551615UL)Description
TRUEevaluated 88 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1500 times by 1 test
Evaluated by:
  • split
88-1500
1624 )-
1625 {-
1626 n_read = initial_read;-
1627 initial_read = -
1628 (18446744073709551615UL)-
1629 ;-
1630 }
executed 88 times by 1 test: end of block
Executed by:
  • split
88
1631 else-
1632 {-
1633 n_read = safe_read (-
1634 0-
1635 , buf, bufsize);-
1636 if (n_read == ((size_t) -1)
n_read == ((size_t) -1)Description
TRUEnever evaluated
FALSEevaluated 1500 times by 1 test
Evaluated by:
  • split
)
0-1500
1637 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1638 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1639 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1640 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1641 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1642 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1643 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1644 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1645 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1646 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1647 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1648 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1649 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1650 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1651 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1652 }
executed 1500 times by 1 test: end of block
Executed by:
  • split
1500
1653 if (n_read == 0
n_read == 0Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1586 times by 1 test
Evaluated by:
  • split
)
2-1586
1654 break;
executed 2 times by 1 test: break;
Executed by:
  • split
2
1655 n_read = -
1656 (((
(( n_read )<( ...- n_written ))Description
TRUEevaluated 1506 times by 1 test
Evaluated by:
  • split
FALSEevaluated 80 times by 1 test
Evaluated by:
  • split
80-1506
1657 n_read
(( n_read )<( ...- n_written ))Description
TRUEevaluated 1506 times by 1 test
Evaluated by:
  • split
FALSEevaluated 80 times by 1 test
Evaluated by:
  • split
80-1506
1658 )<(
(( n_read )<( ...- n_written ))Description
TRUEevaluated 1506 times by 1 test
Evaluated by:
  • split
FALSEevaluated 80 times by 1 test
Evaluated by:
  • split
80-1506
1659 file_size - n_written
(( n_read )<( ...- n_written ))Description
TRUEevaluated 1506 times by 1 test
Evaluated by:
  • split
FALSEevaluated 80 times by 1 test
Evaluated by:
  • split
80-1506
1660 ))
(( n_read )<( ...- n_written ))Description
TRUEevaluated 1506 times by 1 test
Evaluated by:
  • split
FALSEevaluated 80 times by 1 test
Evaluated by:
  • split
?(
80-1506
1661 n_read-
1662 ):(-
1663 file_size - n_written-
1664 ))-
1665 ;-
1666 chunk_truncated = -
1667 0-
1668 ;-
1669 eob = buf + n_read;-
1670-
1671 while (bp != eob
bp != eobDescription
TRUEevaluated 1962 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1553 times by 1 test
Evaluated by:
  • split
)
1553-1962
1672 {-
1673 size_t to_write;-
1674 -
1675 _Bool -
1676 next = -
1677 0-
1678 ;-
1679-
1680-
1681 off_t skip = -
1682 (((
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1683 n_read
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1684 )<((((
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1685 0
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1686 )>(
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1687 chunk_end - n_written
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1688 ))?(
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1689 0
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1690 ):(
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1691 chunk_end - n_written
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
691-1271
1692 ))))
(( n_read )<((...n_written ))))Description
TRUEevaluated 691 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1271 times by 1 test
Evaluated by:
  • split
?(
691-1271
1693 n_read-
1694 ):((((
(( 0 )>( chunk...- n_written ))Description
TRUEevaluated 413 times by 1 test
Evaluated by:
  • split
FALSEevaluated 858 times by 1 test
Evaluated by:
  • split
413-858
1695 0
(( 0 )>( chunk...- n_written ))Description
TRUEevaluated 413 times by 1 test
Evaluated by:
  • split
FALSEevaluated 858 times by 1 test
Evaluated by:
  • split
413-858
1696 )>(
(( 0 )>( chunk...- n_written ))Description
TRUEevaluated 413 times by 1 test
Evaluated by:
  • split
FALSEevaluated 858 times by 1 test
Evaluated by:
  • split
413-858
1697 chunk_end - n_written
(( 0 )>( chunk...- n_written ))Description
TRUEevaluated 413 times by 1 test
Evaluated by:
  • split
FALSEevaluated 858 times by 1 test
Evaluated by:
  • split
413-858
1698 ))
(( 0 )>( chunk...- n_written ))Description
TRUEevaluated 413 times by 1 test
Evaluated by:
  • split
FALSEevaluated 858 times by 1 test
Evaluated by:
  • split
?(
413-858
1699 0-
1700 ):(-
1701 chunk_end - n_written-
1702 ))))-
1703 ;-
1704 char *bp_out = memchr (bp + skip, eolchar, n_read - skip);-
1705 if (bp_out++
bp_out++Description
TRUEevaluated 714 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1248 times by 1 test
Evaluated by:
  • split
)
714-1248
1706 next =
executed 714 times by 1 test: next = 1 ;
Executed by:
  • split
714
1707 1
executed 714 times by 1 test: next = 1 ;
Executed by:
  • split
714
1708 ;
executed 714 times by 1 test: next = 1 ;
Executed by:
  • split
714
1709 else-
1710 bp_out = eob;
executed 1248 times by 1 test: bp_out = eob;
Executed by:
  • split
1248
1711 to_write = bp_out - bp;-
1712-
1713 if (k == chunk_no
k == chunk_noDescription
TRUEevaluated 91 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1871 times by 1 test
Evaluated by:
  • split
)
91-1871
1714 {-
1715-
1716-
1717-
1718 if (full_write (
full_write ( 1...e) != to_writeDescription
TRUEnever evaluated
FALSEevaluated 91 times by 1 test
Evaluated by:
  • split
0-91
1719 1
full_write ( 1...e) != to_writeDescription
TRUEnever evaluated
FALSEevaluated 91 times by 1 test
Evaluated by:
  • split
0-91
1720 , bp, to_write) != to_write
full_write ( 1...e) != to_writeDescription
TRUEnever evaluated
FALSEevaluated 91 times by 1 test
Evaluated by:
  • split
)
0-91
1721 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1722 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1723 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1724 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1725 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1726 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1727 , "%s",
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1728 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1729 "write error"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1730 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1731 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1732 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1733 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1734 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1735 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1736 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1737 , "%s",
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1738 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1739 "write error"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1740 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1741 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1742 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1743 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1744 }
executed 91 times by 1 test: end of block
Executed by:
  • split
91
1745 else if (! k
! kDescription
TRUEevaluated 1822 times by 1 test
Evaluated by:
  • split
FALSEevaluated 49 times by 1 test
Evaluated by:
  • split
)
49-1822
1746 cwrite (new_file_flag, bp, to_write);
executed 1822 times by 1 test: cwrite (new_file_flag, bp, to_write);
Executed by:
  • split
1822
1747 n_written += to_write;-
1748 bp += to_write;-
1749 n_read -= to_write;-
1750 new_file_flag = next;-
1751-
1752-
1753-
1754 while (next
nextDescription
TRUEevaluated 841 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1929 times by 1 test
Evaluated by:
  • split
|| chunk_end <= n_written - 1
chunk_end <= n_written - 1Description
TRUEevaluated 414 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1515 times by 1 test
Evaluated by:
  • split
)
414-1929
1755 {-
1756 if (!next
!nextDescription
TRUEevaluated 414 times by 1 test
Evaluated by:
  • split
FALSEevaluated 841 times by 1 test
Evaluated by:
  • split
&& bp == eob
bp == eobDescription
TRUEevaluated 414 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
)
0-841
1757 {-
1758-
1759 chunk_truncated = -
1760 1-
1761 ;-
1762 break;
executed 414 times by 1 test: break;
Executed by:
  • split
414
1763 }-
1764 chunk_no++;-
1765 if (k
kDescription
TRUEevaluated 67 times by 1 test
Evaluated by:
  • split
FALSEevaluated 774 times by 1 test
Evaluated by:
  • split
&& chunk_no > k
chunk_no > kDescription
TRUEevaluated 33 times by 1 test
Evaluated by:
  • split
FALSEevaluated 34 times by 1 test
Evaluated by:
  • split
)
33-774
1766 return;
executed 33 times by 1 test: return;
Executed by:
  • split
33
1767 if (chunk_no == n
chunk_no == nDescription
TRUEevaluated 68 times by 1 test
Evaluated by:
  • split
FALSEevaluated 740 times by 1 test
Evaluated by:
  • split
)
68-740
1768 chunk_end = file_size - 1;
executed 68 times by 1 test: chunk_end = file_size - 1;
Executed by:
  • split
68
1769 else-
1770 chunk_end += chunk_size;
executed 740 times by 1 test: chunk_end += chunk_size;
Executed by:
  • split
740
1771 if (chunk_end <= n_written - 1
chunk_end <= n_written - 1Description
TRUEevaluated 127 times by 1 test
Evaluated by:
  • split
FALSEevaluated 681 times by 1 test
Evaluated by:
  • split
)
127-681
1772 {-
1773 if (! k
! kDescription
TRUEevaluated 120 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
)
7-120
1774 cwrite (
executed 120 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
120
1775 1
executed 120 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
120
1776 ,
executed 120 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
120
1777 ((void *)0)
executed 120 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
120
1778 , 0);
executed 120 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
120
1779 }
executed 127 times by 1 test: end of block
Executed by:
  • split
127
1780 else-
1781 next =
executed 681 times by 1 test: next = 0 ;
Executed by:
  • split
681
1782 0
executed 681 times by 1 test: next = 0 ;
Executed by:
  • split
681
1783 ;
executed 681 times by 1 test: next = 0 ;
Executed by:
  • split
681
1784 }-
1785 }
executed 1929 times by 1 test: end of block
Executed by:
  • split
1929
1786 }
executed 1553 times by 1 test: end of block
Executed by:
  • split
1553
1787-
1788 if (chunk_truncated
chunk_truncatedDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 68 times by 1 test
Evaluated by:
  • split
)
1-68
1789 chunk_no++;
executed 1 time by 1 test: chunk_no++;
Executed by:
  • split
1
1790-
1791-
1792-
1793-
1794 while (!k
!kDescription
TRUEevaluated 88 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
&& chunk_no++ <= n
chunk_no++ <= nDescription
TRUEevaluated 20 times by 1 test
Evaluated by:
  • split
FALSEevaluated 68 times by 1 test
Evaluated by:
  • split
)
1-88
1795 cwrite (
executed 20 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
20
1796 1
executed 20 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
20
1797 ,
executed 20 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
20
1798 ((void *)0)
executed 20 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
20
1799 , 0);
executed 20 times by 1 test: cwrite ( 1 , ((void *)0) , 0);
Executed by:
  • split
20
1800}
executed 69 times by 1 test: end of block
Executed by:
  • split
69
1801-
1802-
1803-
1804static void-
1805bytes_chunk_extract (uintmax_t k, uintmax_t n, char *buf, size_t bufsize,-
1806 size_t initial_read, off_t file_size)-
1807{-
1808 off_t start;-
1809 off_t end;-
1810-
1811 -
1812 ((-
1813 k && n && k <= n && n <= file_size-
1814 ) ? (void) (0) : __assert_fail (-
1815 "k && n && k <= n && n <= file_size"-
1816 , "src/split.c", 991, __PRETTY_FUNCTION__))-
1817 ;-
1818-
1819 start = (k - 1) * (file_size / n);-
1820 end = (
(k == n)Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
k == n)
(k == n)Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
? file_size : k * (file_size / n);
3-7
1821-
1822 if (start < initial_read
start < initial_readDescription
TRUEevaluated 8 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
)
2-8
1823 {-
1824 memmove (buf, buf + start, initial_read - start);-
1825 initial_read -= start;-
1826 }
executed 8 times by 1 test: end of block
Executed by:
  • split
8
1827 else-
1828 {-
1829 if (lseek (
lseek ( 0 , start, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
0-2
1830 0
lseek ( 0 , start, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
0-2
1831 , start,
lseek ( 0 , start, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
0-2
1832 1
lseek ( 0 , start, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
0-2
1833 ) < 0
lseek ( 0 , start, 1 ) < 0Description
TRUEnever evaluated
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
)
0-2
1834 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1835 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1836 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1837 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1838 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1839 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1840 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1841 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1842 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1843 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1844 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1845 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1846 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1847 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1848 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1849 initial_read = -
1850 (18446744073709551615UL)-
1851 ;-
1852 }
executed 2 times by 1 test: end of block
Executed by:
  • split
2
1853-
1854 while (start < end
start < endDescription
TRUEevaluated 10 times by 1 test
Evaluated by:
  • split
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
)
8-10
1855 {-
1856 size_t n_read;-
1857 if (initial_read !=
initial_read !...73709551615UL)Description
TRUEevaluated 8 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
2-8
1858 (18446744073709551615UL)
initial_read !...73709551615UL)Description
TRUEevaluated 8 times by 1 test
Evaluated by:
  • split
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
2-8
1859 )-
1860 {-
1861 n_read = initial_read;-
1862 initial_read = -
1863 (18446744073709551615UL)-
1864 ;-
1865 }
executed 8 times by 1 test: end of block
Executed by:
  • split
8
1866 else-
1867 {-
1868 n_read = safe_read (-
1869 0-
1870 , buf, bufsize);-
1871 if (n_read == ((size_t) -1)
n_read == ((size_t) -1)Description
TRUEnever evaluated
FALSEevaluated 2 times by 1 test
Evaluated by:
  • split
)
0-2
1872 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1873 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1874 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1875 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1876 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1877 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1878 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1879 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1880 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1881 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1882 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1883 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1884 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1885 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1886 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1887 }
executed 2 times by 1 test: end of block
Executed by:
  • split
2
1888 if (n_read == 0
n_read == 0Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
)
2-8
1889 break;
executed 2 times by 1 test: break;
Executed by:
  • split
2
1890 n_read = -
1891 (((
(( n_read )<( end - start ))Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
1892 n_read
(( n_read )<( end - start ))Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
1893 )<(
(( n_read )<( end - start ))Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
1894 end - start
(( n_read )<( end - start ))Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
1895 ))
(( n_read )<( end - start ))Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
?(
0-8
1896 n_read-
1897 ):(-
1898 end - start-
1899 ))-
1900 ;-
1901 if (full_write (
full_write ( 1...ead) != n_readDescription
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
1902 1
full_write ( 1...ead) != n_readDescription
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
1903 , buf, n_read) != n_read
full_write ( 1...ead) != n_readDescription
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
1904 && ! ignorable (
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
0
1905 (*__errno_location ())
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
0
1906 )
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
)
0
1907 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1908 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1909 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1910 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1911 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1912 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1913 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1914 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1915 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1916 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1917 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1918 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1919 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1920 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1921 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, \"-\")), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ())...yle_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, "-")), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1922 start += n_read;-
1923 }
executed 8 times by 1 test: end of block
Executed by:
  • split
8
1924}
executed 10 times by 1 test: end of block
Executed by:
  • split
10
1925-
1926typedef struct of_info-
1927{-
1928 char *of_name;-
1929 int ofd;-
1930 FILE *ofile;-
1931 int opid;-
1932} of_t;-
1933-
1934enum-
1935{-
1936 OFD_NEW = -1,-
1937 OFD_APPEND = -2-
1938};-
1939-
1940-
1941-
1942-
1943-
1944-
1945static -
1946 _Bool-
1947-
1948ofile_open (of_t *files, size_t i_check, size_t nfiles)-
1949{-
1950 -
1951 _Bool -
1952 file_limit = -
1953 0-
1954 ;-
1955-
1956 if (files[i_check].ofd <= OFD_NEW
files[i_check].ofd <= OFD_NEWDescription
TRUEevaluated 213 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605136 times by 1 test
Evaluated by:
  • split
)
213-605136
1957 {-
1958 int fd;-
1959 size_t i_reopen = i_check
i_checkDescription
TRUEevaluated 199 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
? i_check - 1 : nfiles - 1;
14-199
1960-
1961-
1962-
1963-
1964 while (-
1965 1-
1966 )-
1967 {-
1968 if (files[i_check].ofd == OFD_NEW
files[i_check].ofd == OFD_NEWDescription
TRUEevaluated 169 times by 1 test
Evaluated by:
  • split
FALSEevaluated 45 times by 1 test
Evaluated by:
  • split
)
45-169
1969 fd = create (files[i_check].of_name);
executed 169 times by 1 test: fd = create (files[i_check].of_name);
Executed by:
  • split
169
1970 else-
1971 {-
1972 fd = open_safer (files[i_check].of_name,-
1973 -
1974 01 -
1975 | -
1976 0 -
1977 | -
1978 02000 -
1979 | -
1980 04000-
1981 );-
1982 }
executed 45 times by 1 test: end of block
Executed by:
  • split
45
1983-
1984 if (-
-1 < fdDescription
TRUEevaluated 213 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
1 < fd
-1 < fdDescription
TRUEevaluated 213 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
)
1-213
1985 break;
executed 213 times by 1 test: break;
Executed by:
  • split
213
1986-
1987 if (!(-
1988 (*
(*__errno_location ()) == 24Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
__errno_location ())
(*__errno_location ()) == 24Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-1
1989 ==
(*__errno_location ()) == 24Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-1
1990 24
(*__errno_location ()) == 24Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEnever evaluated
0-1
1991 || -
1992 (*
(*__errno_location ()) == 23Description
TRUEnever evaluated
FALSEnever evaluated
__errno_location ())
(*__errno_location ()) == 23Description
TRUEnever evaluated
FALSEnever evaluated
0
1993 ==
(*__errno_location ()) == 23Description
TRUEnever evaluated
FALSEnever evaluated
0
1994 23
(*__errno_location ()) == 23Description
TRUEnever evaluated
FALSEnever evaluated
0
1995 ))-
1996 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1997 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1998 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1999 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2000 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2001 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2002 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2003 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2004 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2005 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2006 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2007 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2008 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2009 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2010 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2011-
2012 file_limit = -
2013 1-
2014 ;-
2015-
2016-
2017 while (files[i_reopen].ofd < 0
files[i_reopen].ofd < 0Description
TRUEnever evaluated
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
)
0-1
2018 {-
2019 i_reopen = i_reopen
i_reopenDescription
TRUEnever evaluated
FALSEnever evaluated
? i_reopen - 1 : nfiles - 1;
0
2020-
2021 if (i_reopen == i_check
i_reopen == i_checkDescription
TRUEnever evaluated
FALSEnever evaluated
)
0
2022 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2023 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2024 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2025 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2026 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2027 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2028 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2029 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2030 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2031 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2032 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2033 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2034 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2035 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2036 ) ? (void) 0 : __builtin_unreachable ()))))
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2037 ;
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...e, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
2038 }
never executed: end of block
0
2039-
2040 if (-
2041 rpl_fclose
rpl_fclose (fi...n].ofile) != 0Description
TRUEnever evaluated
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
0-1
2042 (files[i_reopen].ofile) != 0
rpl_fclose (fi...n].ofile) != 0Description
TRUEnever evaluated
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
)
0-1
2043 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2044 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2045 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2046 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2047 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2048 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2049 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2050 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2051 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2052 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2053 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2054 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2055 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2056 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2057 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__..., files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_reopen].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2058 files[i_reopen].ofile = -
2059 ((void *)0)-
2060 ;-
2061 files[i_reopen].ofd = OFD_APPEND;-
2062 }
executed 1 time by 1 test: end of block
Executed by:
  • split
1
2063-
2064 files[i_check].ofd = fd;-
2065 if (!(files[i_check].ofile = fdopen (fd, "a"))
!(files[i_chec...pen (fd, "a"))Description
TRUEnever evaluated
FALSEevaluated 213 times by 1 test
Evaluated by:
  • split
)
0-213
2066 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2067 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2068 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2069 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2070 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2071 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2072 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2073 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2074 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2075 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2076 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2077 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2078 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2079 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2080 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__e...le, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_check].of_name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2081 files[i_check].opid = filter_pid;-
2082 filter_pid = 0;-
2083 }
executed 213 times by 1 test: end of block
Executed by:
  • split
213
2084-
2085 return
executed 605349 times by 1 test: return file_limit;
Executed by:
  • split
file_limit;
executed 605349 times by 1 test: return file_limit;
Executed by:
  • split
605349
2086}-
2087-
2088-
2089-
2090-
2091-
2092-
2093static void-
2094lines_rr (uintmax_t k, uintmax_t n, char *buf, size_t bufsize)-
2095{-
2096 -
2097 _Bool -
2098 wrapped = -
2099 0-
2100 ;-
2101 -
2102 _Bool -
2103 wrote = -
2104 0-
2105 ;-
2106 -
2107 _Bool -
2108 file_limit;-
2109 size_t i_file;-
2110 of_t *files ;-
2111 uintmax_t line_no;-
2112-
2113 if (k
kDescription
TRUEevaluated 5 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
)
5-14
2114 line_no = 1;
executed 5 times by 1 test: line_no = 1;
Executed by:
  • split
5
2115 else-
2116 {-
2117 if (-
2118 (
(18446744073709551615UL) < nDescription
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
18446744073709551615UL)
(18446744073709551615UL) < nDescription
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
0-14
2119 < n
(18446744073709551615UL) < nDescription
TRUEnever evaluated
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
)
0-14
2120 xalloc_die ();
never executed: xalloc_die ();
0
2121 files = xnmalloc (n, sizeof *files);-
2122-
2123-
2124 for (i_file = 0; i_file < n
i_file < nDescription
TRUEevaluated 178 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
; i_file++)
14-178
2125 {-
2126 next_file_name ();-
2127 files[i_file].of_name = xstrdup (outfile);-
2128 files[i_file].ofd = OFD_NEW;-
2129 files[i_file].ofile = -
2130 ((void *)0)-
2131 ;-
2132 files[i_file].opid = 0;-
2133 }
executed 178 times by 1 test: end of block
Executed by:
  • split
178
2134 i_file = 0;-
2135 file_limit = -
2136 0-
2137 ;-
2138 }
executed 14 times by 1 test: end of block
Executed by:
  • split
14
2139-
2140 while (-
2141 1-
2142 )-
2143 {-
2144 char *bp = buf, *eob;-
2145 size_t n_read = safe_read (-
2146 0-
2147 , buf, bufsize);-
2148 if (n_read == ((size_t) -1)
n_read == ((size_t) -1)Description
TRUEnever evaluated
FALSEevaluated 800 times by 1 test
Evaluated by:
  • split
)
0-800
2149 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2150 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2151 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2152 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2153 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2154 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2155 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2156 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2157 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2158 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2159 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2160 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2161 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2162 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2163 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2164 else if (n_read == 0
n_read == 0Description
TRUEevaluated 17 times by 1 test
Evaluated by:
  • split
FALSEevaluated 783 times by 1 test
Evaluated by:
  • split
)
17-783
2165 break;
executed 17 times by 1 test: break;
Executed by:
  • split
17
2166 eob = buf + n_read;-
2167-
2168 while (bp != eob
bp != eobDescription
TRUEevaluated 605259 times by 1 test
Evaluated by:
  • split
FALSEevaluated 781 times by 1 test
Evaluated by:
  • split
)
781-605259
2169 {-
2170 size_t to_write;-
2171 -
2172 _Bool -
2173 next = -
2174 0-
2175 ;-
2176-
2177-
2178 char *bp_out = memchr (bp, eolchar, eob - bp);-
2179 if (bp_out
bp_outDescription
TRUEevaluated 604595 times by 1 test
Evaluated by:
  • split
FALSEevaluated 664 times by 1 test
Evaluated by:
  • split
)
664-604595
2180 {-
2181 bp_out++;-
2182 next = -
2183 1-
2184 ;-
2185 }
executed 604595 times by 1 test: end of block
Executed by:
  • split
604595
2186 else-
2187 bp_out = eob;
executed 664 times by 1 test: bp_out = eob;
Executed by:
  • split
664
2188 to_write = bp_out - bp;-
2189-
2190 if (k
kDescription
TRUEevaluated 20 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
)
20-605239
2191 {-
2192 if (line_no == k
line_no == kDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 13 times by 1 test
Evaluated by:
  • split
&& unbuffered
unbufferedDescription
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
)
0-13
2193 {-
2194 if (full_write (
full_write ( 1...e) != to_writeDescription
TRUEnever evaluated
FALSEnever evaluated
0
2195 1
full_write ( 1...e) != to_writeDescription
TRUEnever evaluated
FALSEnever evaluated
0
2196 , bp, to_write) != to_write
full_write ( 1...e) != to_writeDescription
TRUEnever evaluated
FALSEnever evaluated
)
0
2197 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2198 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2199 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2200 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2201 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2202 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2203 , "%s",
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2204 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2205 "write error"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2206 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2207 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2208 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2209 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2210 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2211 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2212 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2213 , "%s",
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2214 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2215 "write error"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2216 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2217 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2218 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2219 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", dcgettext (((void *)0), "write error" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2220 }
never executed: end of block
0
2221 else if (line_no == k
line_no == kDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 13 times by 1 test
Evaluated by:
  • split
&&
7-13
2222 (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
__extension__ ((__builtin_constant_p (
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2223 to_write
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2224 )
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
&& __builtin_constant_p (
__builtin_constant_p ( 1 )Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2225 1
__builtin_constant_p ( 1 )Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2226 )
__builtin_constant_p ( 1 )Description
TRUEnever evaluated
FALSEnever evaluated
&& (
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
size_t) (
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2227 to_write
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2228 ) * (size_t) (
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2229 1
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2230 ) <= 8
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
&& (
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
size_t) (
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2231 to_write
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2232 ) != 0
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
) ? ({ const char *__ptr = (const char *) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2233 bp
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2234 ); FILE *__stream = (stdout); size_t __cnt; for (__cnt = (size_t) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2235 to_write
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2236 ) * (size_t) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2237 1
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2238 ); __cnt > 0
__cnt > 0Description
TRUEnever evaluated
FALSEnever evaluated
; --__cnt) if ((
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0)
__builtin_expe...write_end), 0)Description
TRUEnever evaluated
FALSEnever evaluated
? __overflow (__stream, (unsigned char) (*__ptr++)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (*__ptr++))) == (-1)
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
) break;
never executed: break;
((size_t) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2239 to_write
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2240 ) * (size_t) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2241 1
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2242 ) - __cnt) / (size_t) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2243 to_write
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2244 ); }) : (((__builtin_constant_p (
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2245 to_write
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2246 )
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
&& (
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
size_t) (
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2247 to_write
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2248 ) == 0
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
) || (__builtin_constant_p (
__builtin_constant_p ( 1 )Description
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2249 1
__builtin_constant_p ( 1 )Description
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2250 )
__builtin_constant_p ( 1 )Description
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& (
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
size_t) (
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2251 1
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2252 ) == 0
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
)) ? ((void) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2253 bp
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2254 ), (void) (stdout), (void) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2255 to_write
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2256 ), (void) (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2257 1
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2258 ), (size_t) 0) : fwrite_unlocked (
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2259 bp
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2260 ,
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2261 to_write
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2262 ,
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2263 1
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2264 , stdout))))
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
0-7
2265 != 1
(__extension__...tdout)))) != 1Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
)
0-7
2266 {-
2267 clearerr_unlocked (-
2268 stdout-
2269 );-
2270 ((!!sizeof (struct { _Static_assert (-
2271 1-
2272 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", dcgettext (((void *)0), \"write error\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
2273 1-
2274 , -
2275 (*__errno_location ())-
2276 , "%s", -
2277 dcgettext (((void *)0), -
2278 "write error"-
2279 , 5)-
2280 ), ((-
2281 0-
2282 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
2283 1-
2284 , -
2285 (*__errno_location ())-
2286 , "%s", -
2287 dcgettext (((void *)0), -
2288 "write error"-
2289 , 5)-
2290 ), ((-
2291 0-
2292 ) ? (void) 0 : __builtin_unreachable ()))));-
2293 }
never executed: end of block
0
2294 if (next
nextDescription
TRUEevaluated 19 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
)
1-19
2295 line_no = (
(line_no == n)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 15 times by 1 test
Evaluated by:
  • split
line_no == n)
(line_no == n)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 15 times by 1 test
Evaluated by:
  • split
? 1 : line_no + 1;
executed 19 times by 1 test: line_no = (line_no == n) ? 1 : line_no + 1;
Executed by:
  • split
4-19
2296 }
executed 20 times by 1 test: end of block
Executed by:
  • split
20
2297 else-
2298 {-
2299-
2300 file_limit |= ofile_open (files, i_file, n);-
2301 if (unbuffered
unbufferedDescription
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
)
0-605239
2302 {-
2303-
2304-
2305 if (full_write (files[i_file].ofd, bp, to_write) != to_write
full_write (fi...e) != to_writeDescription
TRUEnever evaluated
FALSEnever evaluated
0
2306 && ! ignorable (
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
0
2307 (*__errno_location ())
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
0
2308 )
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEnever evaluated
)
0
2309 {-
2310 ((!!sizeof (struct { _Static_assert (-
2311 1-
2312 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
2313 1-
2314 , -
2315 (*__errno_location ())-
2316 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), ((-
2317 0-
2318 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
2319 1-
2320 , -
2321 (*__errno_location ())-
2322 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), ((-
2323 0-
2324 ) ? (void) 0 : __builtin_unreachable ()))))-
2325 ;-
2326 }
never executed: end of block
0
2327 }
never executed: end of block
0
2328 else if (-
2329 (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
__extension__ ((__builtin_constant_p (
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2330 to_write
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2331 )
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
&& __builtin_constant_p (
__builtin_constant_p ( 1 )Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2332 1
__builtin_constant_p ( 1 )Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2333 )
__builtin_constant_p ( 1 )Description
TRUEnever evaluated
FALSEnever evaluated
&& (
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
size_t) (
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2334 to_write
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2335 ) * (size_t) (
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2336 1
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2337 ) <= 8
(size_t) ( to_..._t) ( 1 ) <= 8Description
TRUEnever evaluated
FALSEnever evaluated
&& (
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
size_t) (
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2338 to_write
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2339 ) != 0
(size_t) ( to_write ) != 0Description
TRUEnever evaluated
FALSEnever evaluated
) ? ({ const char *__ptr = (const char *) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2340 bp
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2341 ); FILE *__stream = (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2342 files[i_file].ofile
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2343 ); size_t __cnt; for (__cnt = (size_t) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2344 to_write
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2345 ) * (size_t) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2346 1
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2347 ); __cnt > 0
__cnt > 0Description
TRUEnever evaluated
FALSEnever evaluated
; --__cnt) if ((
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
__builtin_expect (((__stream)->_IO_write_ptr >= (__stream)->_IO_write_end), 0)
__builtin_expe...write_end), 0)Description
TRUEnever evaluated
FALSEnever evaluated
? __overflow (__stream, (unsigned char) (*__ptr++)) : (unsigned char) (*(__stream)->_IO_write_ptr++ = (*__ptr++))) == (-1)
(__builtin_exp...r++))) == (-1)Description
TRUEnever evaluated
FALSEnever evaluated
) break;
never executed: break;
((size_t) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2348 to_write
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2349 ) * (size_t) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2350 1
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2351 ) - __cnt) / (size_t) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2352 to_write
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2353 ); }) : (((__builtin_constant_p (
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2354 to_write
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2355 )
__builtin_cons...p ( to_write )Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
&& (
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
size_t) (
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2356 to_write
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605236
2357 ) == 0
(size_t) ( to_write ) == 0Description
TRUEnever evaluated
FALSEnever evaluated
) || (__builtin_constant_p (
__builtin_constant_p ( 1 )Description
TRUEevaluated 605239 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2358 1
__builtin_constant_p ( 1 )Description
TRUEevaluated 605239 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2359 )
__builtin_constant_p ( 1 )Description
TRUEevaluated 605239 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& (
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
size_t) (
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2360 1
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2361 ) == 0
(size_t) ( 1 ) == 0Description
TRUEnever evaluated
FALSEevaluated 605239 times by 1 test
Evaluated by:
  • split
)) ? ((void) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
0-605239
2362 bp
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2363 ), (void) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2364 files[i_file].ofile
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2365 ), (void) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2366 to_write
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2367 ), (void) (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2368 1
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2369 ), (size_t) 0) : fwrite_unlocked (
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2370 bp
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2371 ,
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2372 to_write
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2373 ,
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2374 1
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2375 ,
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2376 files[i_file].ofile
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2377 ))))
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2378 != 1
(__extension__...file )))) != 1Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605236 times by 1 test
Evaluated by:
  • split
3-605236
2379 && ! ignorable (
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-3
2380 (*__errno_location ())
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-3
2381 )
! ignorable ( ...location ()) )Description
TRUEnever evaluated
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
)
0-3
2382 {-
2383 ((!!sizeof (struct { _Static_assert (-
2384 1-
2385 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
2386 1-
2387 , -
2388 (*__errno_location ())-
2389 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), ((-
2390 0-
2391 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
2392 1-
2393 , -
2394 (*__errno_location ())-
2395 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), ((-
2396 0-
2397 ) ? (void) 0 : __builtin_unreachable ()))))-
2398 ;-
2399 }
never executed: end of block
0
2400-
2401 if (! ignorable (
! ignorable ( ...location ()) )Description
TRUEevaluated 605236 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-605236
2402 (*__errno_location ())
! ignorable ( ...location ()) )Description
TRUEevaluated 605236 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-605236
2403 )
! ignorable ( ...location ()) )Description
TRUEevaluated 605236 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
)
3-605236
2404 wrote =
executed 605236 times by 1 test: wrote = 1 ;
Executed by:
  • split
605236
2405 1
executed 605236 times by 1 test: wrote = 1 ;
Executed by:
  • split
605236
2406 ;
executed 605236 times by 1 test: wrote = 1 ;
Executed by:
  • split
605236
2407-
2408 if (file_limit
file_limitDescription
TRUEevaluated 74 times by 1 test
Evaluated by:
  • split
FALSEevaluated 605165 times by 1 test
Evaluated by:
  • split
)
74-605165
2409 {-
2410 if (-
2411 rpl_fclose
rpl_fclose (fi...e].ofile) != 0Description
TRUEnever evaluated
FALSEevaluated 74 times by 1 test
Evaluated by:
  • split
0-74
2412 (files[i_file].ofile) != 0
rpl_fclose (fi...e].ofile) != 0Description
TRUEnever evaluated
FALSEevaluated 74 times by 1 test
Evaluated by:
  • split
)
0-74
2413 {-
2414 ((!!sizeof (struct { _Static_assert (-
2415 1-
2416 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
2417 1-
2418 , -
2419 (*__errno_location ())-
2420 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), ((-
2421 0-
2422 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
2423 1-
2424 , -
2425 (*__errno_location ())-
2426 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, files[i_file].of_name)), ((-
2427 0-
2428 ) ? (void) 0 : __builtin_unreachable ()))))-
2429 ;-
2430 }
never executed: end of block
0
2431 files[i_file].ofile = -
2432 ((void *)0)-
2433 ;-
2434 files[i_file].ofd = OFD_APPEND;-
2435 }
executed 74 times by 1 test: end of block
Executed by:
  • split
74
2436 if (next
nextDescription
TRUEevaluated 604576 times by 1 test
Evaluated by:
  • split
FALSEevaluated 663 times by 1 test
Evaluated by:
  • split
&& ++
++i_file == nDescription
TRUEevaluated 194644 times by 1 test
Evaluated by:
  • split
FALSEevaluated 409932 times by 1 test
Evaluated by:
  • split
i_file == n
++i_file == nDescription
TRUEevaluated 194644 times by 1 test
Evaluated by:
  • split
FALSEevaluated 409932 times by 1 test
Evaluated by:
  • split
)
663-604576
2437 {-
2438 wrapped = -
2439 1-
2440 ;-
2441-
2442 if (! wrote
! wroteDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEevaluated 194642 times by 1 test
Evaluated by:
  • split
)
2-194642
2443 goto
executed 2 times by 1 test: goto no_filters;
Executed by:
  • split
no_filters;
executed 2 times by 1 test: goto no_filters;
Executed by:
  • split
2
2444 wrote = -
2445 0-
2446 ;-
2447 i_file = 0;-
2448 }
executed 194642 times by 1 test: end of block
Executed by:
  • split
194642
2449 }
executed 605237 times by 1 test: end of block
Executed by:
  • split
605237
2450-
2451 bp = bp_out;-
2452 }
executed 605257 times by 1 test: end of block
Executed by:
  • split
605257
2453 }
executed 781 times by 1 test: end of block
Executed by:
  • split
781
2454-
2455no_filters:
code before this statement executed 17 times by 1 test: no_filters:
Executed by:
  • split
17
2456-
2457-
2458-
2459-
2460 if (!k
!kDescription
TRUEevaluated 14 times by 1 test
Evaluated by:
  • split
FALSEevaluated 5 times by 1 test
Evaluated by:
  • split
)
5-14
2461 {-
2462 int ceiling = (wrapped
wrappedDescription
TRUEevaluated 11 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
? n : i_file);
3-11
2463 for (i_file = 0; i_file < n
i_file < nDescription
TRUEevaluated 178 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
; i_file++)
14-178
2464 {-
2465 if (i_file >= ceiling
i_file >= ceilingDescription
TRUEevaluated 120 times by 1 test
Evaluated by:
  • split
FALSEevaluated 58 times by 1 test
Evaluated by:
  • split
&& !elide_empty_files
!elide_empty_filesDescription
TRUEevaluated 110 times by 1 test
Evaluated by:
  • split
FALSEevaluated 10 times by 1 test
Evaluated by:
  • split
)
10-120
2466 file_limit |= ofile_open (files, i_file, n);
executed 110 times by 1 test: file_limit |= ofile_open (files, i_file, n);
Executed by:
  • split
110
2467 if (files[i_file].ofd >= 0
files[i_file].ofd >= 0Description
TRUEevaluated 138 times by 1 test
Evaluated by:
  • split
FALSEevaluated 40 times by 1 test
Evaluated by:
  • split
)
40-138
2468 closeout (files[i_file].ofile, files[i_file].ofd,
executed 138 times by 1 test: closeout (files[i_file].ofile, files[i_file].ofd, files[i_file].opid, files[i_file].of_name);
Executed by:
  • split
138
2469 files[i_file].opid, files[i_file].of_name);
executed 138 times by 1 test: closeout (files[i_file].ofile, files[i_file].ofd, files[i_file].opid, files[i_file].of_name);
Executed by:
  • split
138
2470 files[i_file].ofd = OFD_APPEND;-
2471 }
executed 178 times by 1 test: end of block
Executed by:
  • split
178
2472 }
executed 14 times by 1 test: end of block
Executed by:
  • split
14
2473 ;-
2474}
executed 19 times by 1 test: end of block
Executed by:
  • split
19
2475static void-
2476parse_chunk (uintmax_t *k_units, uintmax_t *n_units, char *slash)-
2477{-
2478 *n_units = xdectoumax (slash + 1, 1, -
2479 (18446744073709551615UL)-
2480 , "",-
2481 -
2482 dcgettext (((void *)0), -
2483 "invalid number of chunks"-
2484 , 5)-
2485 , 0);-
2486 if (slash != optarg
slash != optargDescription
TRUEevaluated 54 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
)
0-54
2487 {-
2488 *slash = '\0';-
2489 *k_units = xdectoumax (optarg, 1, *n_units, "",-
2490 -
2491 dcgettext (((void *)0), -
2492 "invalid chunk number"-
2493 , 5)-
2494 , 0);-
2495 }
executed 51 times by 1 test: end of block
Executed by:
  • split
51
2496}
executed 51 times by 1 test: end of block
Executed by:
  • split
51
2497-
2498-
2499int-
2500main (int argc, char **argv)-
2501{-
2502 enum Split_type split_type = type_undef;-
2503 size_t in_blk_size = 0;-
2504 size_t page_size = getpagesize ();-
2505 uintmax_t k_units = 0;-
2506 uintmax_t n_units = 0;-
2507-
2508 static char const multipliers[] = "bEGKkMmPTYZ0";-
2509 int c;-
2510 int digits_optind = 0;-
2511 off_t file_size = ((off_t) (! (! ((off_t) 0 < (off_t) -1)) ? (off_t) -1 : ((((off_t) 1 << ((sizeof (off_t) * 8) - 2)) - 1) * 2 + 1)));-
2512-
2513 ;-
2514 set_program_name (argv[0]);-
2515 setlocale (-
2516 6-
2517 , "");-
2518 bindtextdomain ("coreutils", "/usr/local/share/locale");-
2519 textdomain ("coreutils");-
2520-
2521 atexit (close_stdout);-
2522-
2523-
2524-
2525 infile = bad_cast ("-");-
2526 outbase = bad_cast ("x");-
2527-
2528 while (-
2529 1-
2530 )-
2531 {-
2532-
2533 int this_optind = optind
optindDescription
TRUEevaluated 1327 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
? optind : 1;
0-1327
2534 char *slash;-
2535-
2536 c = getopt_long (argc, argv, "0123456789C:a:b:del:n:t:ux",-
2537 longopts, -
2538 ((void *)0)-
2539 );-
2540 if (c == -1
c == -1Description
TRUEevaluated 417 times by 1 test
Evaluated by:
  • split
FALSEevaluated 910 times by 1 test
Evaluated by:
  • split
)
417-910
2541 break;
executed 417 times by 1 test: break;
Executed by:
  • split
417
2542-
2543 switch (c)-
2544 {-
2545 case
executed 11 times by 1 test: case 'a':
Executed by:
  • split
'a':
executed 11 times by 1 test: case 'a':
Executed by:
  • split
11
2546 suffix_length = xdectoumax (optarg, 0, -
2547 (18446744073709551615UL) -
2548 / sizeof (size_t),-
2549 "", -
2550 dcgettext (((void *)0), -
2551 "invalid suffix length"-
2552 , 5)-
2553 , 0);-
2554 break;
executed 9 times by 1 test: break;
Executed by:
  • split
9
2555-
2556 case
executed 9 times by 1 test: case ADDITIONAL_SUFFIX_OPTION:
Executed by:
  • split
ADDITIONAL_SUFFIX_OPTION:
executed 9 times by 1 test: case ADDITIONAL_SUFFIX_OPTION:
Executed by:
  • split
9
2557 if (last_component (optarg) != optarg
last_component...arg) != optargDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
)
1-8
2558 {-
2559 error (0, 0,-
2560 -
2561 dcgettext (((void *)0), -
2562 "invalid suffix %s, contains directory separator"-
2563 , 5)-
2564 ,-
2565 quote (optarg));-
2566 usage (-
2567 1-
2568 );-
2569 }
never executed: end of block
0
2570 additional_suffix = optarg;-
2571 break;
executed 8 times by 1 test: break;
Executed by:
  • split
8
2572-
2573 case
executed 17 times by 1 test: case 'b':
Executed by:
  • split
'b':
executed 17 times by 1 test: case 'b':
Executed by:
  • split
17
2574 if (split_type != type_undef
split_type != type_undefDescription
TRUEnever evaluated
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
)
0-17
2575 do { error (0, 0, -
2576 dcgettext (((void *)0), -
2577 "cannot split in more than one way"-
2578 , 5)-
2579 ); usage (-
2580 1-
2581 ); }
never executed: end of block
while (0);
0
2582 split_type = type_bytes;-
2583-
2584-
2585-
2586 n_units = xdectoumax (optarg, 1, ((off_t) (! (! ((off_t) 0 < (off_t) -1)) ? (off_t) -1 : ((((off_t) 1 << ((sizeof (off_t) * 8) - 2)) - 1) * 2 + 1))), multipliers,-
2587 -
2588 dcgettext (((void *)0), -
2589 "invalid number of bytes"-
2590 , 5)-
2591 , 0);-
2592 break;
executed 14 times by 1 test: break;
Executed by:
  • split
14
2593-
2594 case
executed 19 times by 1 test: case 'l':
Executed by:
  • split
'l':
executed 19 times by 1 test: case 'l':
Executed by:
  • split
19
2595 if (split_type != type_undef
split_type != type_undefDescription
TRUEnever evaluated
FALSEevaluated 19 times by 1 test
Evaluated by:
  • split
)
0-19
2596 do { error (0, 0, -
2597 dcgettext (((void *)0), -
2598 "cannot split in more than one way"-
2599 , 5)-
2600 ); usage (-
2601 1-
2602 ); }
never executed: end of block
while (0);
0
2603 split_type = type_lines;-
2604 n_units = xdectoumax (optarg, 1, -
2605 (18446744073709551615UL)-
2606 , "",-
2607 -
2608 dcgettext (((void *)0), -
2609 "invalid number of lines"-
2610 , 5)-
2611 , 0);-
2612 break;
executed 16 times by 1 test: break;
Executed by:
  • split
16
2613-
2614 case
executed 242 times by 1 test: case 'C':
Executed by:
  • split
'C':
executed 242 times by 1 test: case 'C':
Executed by:
  • split
242
2615 if (split_type != type_undef
split_type != type_undefDescription
TRUEnever evaluated
FALSEevaluated 242 times by 1 test
Evaluated by:
  • split
)
0-242
2616 do { error (0, 0, -
2617 dcgettext (((void *)0), -
2618 "cannot split in more than one way"-
2619 , 5)-
2620 ); usage (-
2621 1-
2622 ); }
never executed: end of block
while (0);
0
2623 split_type = type_byteslines;-
2624 n_units = xdectoumax (optarg, 1, -
2625 ((((18446744073709551615UL))<(-
2626 ((off_t) (! (! ((off_t) 0 < (off_t) -1)) ? (off_t) -1 : ((((off_t) 1 << ((sizeof (off_t) * 8) - 2)) - 1) * 2 + 1)))-
2627 ))?((18446744073709551615UL)):(-
2628 ((off_t) (! (! ((off_t) 0 < (off_t) -1)) ? (off_t) -1 : ((((off_t) 1 << ((sizeof (off_t) * 8) - 2)) - 1) * 2 + 1)))-
2629 ))-
2630 ,-
2631 multipliers, -
2632 dcgettext (((void *)0), -
2633 "invalid number of bytes"-
2634 , 5)-
2635 , 0);-
2636 break;
executed 237 times by 1 test: break;
Executed by:
  • split
237
2637-
2638 case
executed 152 times by 1 test: case 'n':
Executed by:
  • split
'n':
executed 152 times by 1 test: case 'n':
Executed by:
  • split
152
2639 if (split_type != type_undef
split_type != type_undefDescription
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
)
0-152
2640 do { error (0, 0, -
2641 dcgettext (((void *)0), -
2642 "cannot split in more than one way"-
2643 , 5)-
2644 ); usage (-
2645 1-
2646 ); }
never executed: end of block
while (0);
0
2647-
2648 while (-
2649 ((*
((*__ctype_b_l...int) _ISspace)Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
__ctype_b_loc ())[(int) ((
((*__ctype_b_l...int) _ISspace)Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
0-152
2650 to_uchar (*optarg)
((*__ctype_b_l...int) _ISspace)Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
0-152
2651 ))] & (unsigned short int) _ISspace)
((*__ctype_b_l...int) _ISspace)Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
0-152
2652 )-
2653 optarg++;
never executed: optarg++;
0
2654 if (-
2655 (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
__extension__ (__builtin_constant_p (
__builtin_cons...f ("r/") - 1 )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2656 sizeof ("r/") - 1
__builtin_cons...f ("r/") - 1 )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2657 )
__builtin_cons...f ("r/") - 1 )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& ((__builtin_constant_p (
__builtin_cons...t_p ( optarg )Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2658 optarg
__builtin_cons...t_p ( optarg )Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2659 )
__builtin_cons...t_p ( optarg )Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
&& strlen (
strlen ( optar... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2660 optarg
strlen ( optar... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2661 ) < ((size_t) (
strlen ( optar... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2662 sizeof ("r/") - 1
strlen ( optar... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2663 ))
strlen ( optar... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
) || (__builtin_constant_p (
__builtin_cons...( "" "r/" "" )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2664 "" "r/" ""
__builtin_cons...( "" "r/" "" )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2665 )
__builtin_cons...( "" "r/" "" )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& strlen (
strlen ( "" "r... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2666 "" "r/" ""
strlen ( "" "r... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2667 ) < ((size_t) (
strlen ( "" "r... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2668 sizeof ("r/") - 1
strlen ( "" "r... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2669 ))
strlen ( "" "r... ("r/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
)) ? __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-152
2670 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2671 ) && __builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2672 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2673 ) && (__s1_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2674 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2675 ), __s2_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2676 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2677 ), (!((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2678 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2679 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2680 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2681 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2682 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2683 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2684 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2685 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2686 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2687 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2688 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2689 ) : (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2690 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2691 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2692 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2693 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2694 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2695 ) == 1) && (__s1_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2696 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2697 ), __s1_len < 4) ? (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2698 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2699 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2700 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2701 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2702 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2703 ) == 1) ? __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2704 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2705 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2706 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2707 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2708 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2709 ); int __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2710 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2711 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2712 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2713 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2714 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2715 ))[2] - __s2[2]); if (__s1_len > 2
__s1_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2716 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
0-131
2717 ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2718 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2719 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2720 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2721 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2722 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2723 ) == 1) && (__s2_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2724 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2725 ), __s2_len < 4) ? (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2726 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2727 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2728 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2729 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2730 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2731 ) == 1) ? __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2732 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2733 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2734 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2735 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2736 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2737 ); int __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2738 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2739 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2740 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2741 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2742 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2743 ))[2] - __s2[2]); if (__s2_len > 2
__s2_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( "" "r/" "" ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2744 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "" "r/" "" ))[3] - __s2[3]);
0-131
2745 ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "" "r/" "" ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
0-131
2746 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2747 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2748 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2749 )))); }) : strncmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2750 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2751 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2752 "" "r/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2753 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2754 sizeof ("r/") - 1
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2755 )))
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
21-131
2756 == 0
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • split
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
)
21-131
2757 {-
2758 split_type = type_rr;-
2759 optarg += 2;-
2760 }
executed 21 times by 1 test: end of block
Executed by:
  • split
21
2761 else if (-
2762 (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
__extension__ (__builtin_constant_p (
__builtin_cons...f ("l/") - 1 )Description
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2763 sizeof ("l/") - 1
__builtin_cons...f ("l/") - 1 )Description
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2764 )
__builtin_cons...f ("l/") - 1 )Description
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& ((__builtin_constant_p (
__builtin_cons...t_p ( optarg )Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2765 optarg
__builtin_cons...t_p ( optarg )Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2766 )
__builtin_cons...t_p ( optarg )Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
&& strlen (
strlen ( optar... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2767 optarg
strlen ( optar... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2768 ) < ((size_t) (
strlen ( optar... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2769 sizeof ("l/") - 1
strlen ( optar... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2770 ))
strlen ( optar... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEnever evaluated
) || (__builtin_constant_p (
__builtin_cons...( "" "l/" "" )Description
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2771 "" "l/" ""
__builtin_cons...( "" "l/" "" )Description
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2772 )
__builtin_cons...( "" "l/" "" )Description
TRUEevaluated 131 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& strlen (
strlen ( "" "l... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2773 "" "l/" ""
strlen ( "" "l... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2774 ) < ((size_t) (
strlen ( "" "l... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2775 sizeof ("l/") - 1
strlen ( "" "l... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2776 ))
strlen ( "" "l... ("l/") - 1 ))Description
TRUEnever evaluated
FALSEevaluated 131 times by 1 test
Evaluated by:
  • split
)) ? __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-131
2777 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2778 ) && __builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2779 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2780 ) && (__s1_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2781 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2782 ), __s2_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2783 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2784 ), (!((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2785 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2786 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2787 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2788 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2789 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2790 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2791 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2792 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2793 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2794 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2795 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2796 ) : (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2797 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2798 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2799 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2800 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2801 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2802 ) == 1) && (__s1_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2803 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2804 ), __s1_len < 4) ? (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2805 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2806 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2807 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2808 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2809 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2810 ) == 1) ? __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2811 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2812 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2813 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2814 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2815 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2816 ); int __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2817 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2818 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2819 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2820 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2821 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2822 ))[2] - __s2[2]); if (__s1_len > 2
__s1_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2823 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
0-106
2824 ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2825 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2826 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2827 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2828 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2829 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2830 ) == 1) && (__s2_len = __builtin_strlen (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2831 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2832 ), __s2_len < 4) ? (__builtin_constant_p (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2833 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2834 ) && ((size_t)(const void *)((
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2835 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2836 ) + 1) - (size_t)(const void *)(
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2837 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2838 ) == 1) ? __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2839 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2840 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2841 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2842 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2843 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2844 ); int __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2845 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2846 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2847 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2848 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2849 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2850 ))[2] - __s2[2]); if (__s2_len > 2
__s2_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( "" "l/" "" ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2851 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "" "l/" "" ))[3] - __s2[3]);
0-106
2852 ))[3] - __s2[3]);
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "" "l/" "" ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : __builtin_strcmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
0-106
2853 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2854 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2855 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2856 )))); }) : strncmp (
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2857 optarg
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2858 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2859 "" "l/" ""
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2860 ,
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2861 sizeof ("l/") - 1
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2862 )))
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
25-106
2863 == 0
(__extension__...) - 1 ))) == 0Description
TRUEevaluated 106 times by 1 test
Evaluated by:
  • split
FALSEevaluated 25 times by 1 test
Evaluated by:
  • split
)
25-106
2864 {-
2865 split_type = type_chunk_lines;-
2866 optarg += 2;-
2867 }
executed 106 times by 1 test: end of block
Executed by:
  • split
106
2868 else-
2869 split_type = type_chunk_bytes;
executed 25 times by 1 test: split_type = type_chunk_bytes;
Executed by:
  • split
25
2870 if ((
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
slash =
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2871 (__extension__ (__builtin_constant_p (
__builtin_constant_p ( '/' )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
0-152
2872 '/'
__builtin_constant_p ( '/' )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
0-152
2873 )
__builtin_constant_p ( '/' )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& !__builtin_constant_p (
!__builtin_con...t_p ( optarg )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
0-152
2874 optarg
!__builtin_con...t_p ( optarg )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
0-152
2875 )
!__builtin_con...t_p ( optarg )Description
TRUEevaluated 152 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& (
( '/' ) == '\0'Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
0-152
2876 '/'
( '/' ) == '\0'Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
0-152
2877 ) == '\0'
( '/' ) == '\0'Description
TRUEnever evaluated
FALSEevaluated 152 times by 1 test
Evaluated by:
  • split
? (char *) __rawmemchr (
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
0-152
2878 optarg
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2879 ,
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2880 '/'
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2881 ) : __builtin_strchr (
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2882 optarg
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2883 ,
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2884 '/'
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2885 )))
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
55-97
2886 )
(slash = (__ex...rg , '/' ))) )Description
TRUEevaluated 55 times by 1 test
Evaluated by:
  • split
FALSEevaluated 97 times by 1 test
Evaluated by:
  • split
)
55-97
2887 parse_chunk (&k_units, &n_units, slash);
executed 55 times by 1 test: parse_chunk (&k_units, &n_units, slash);
Executed by:
  • split
55
2888 else-
2889 n_units = xdectoumax (optarg, 1,
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2890 (18446744073709551615UL)
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2891 , "",
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2892
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2893 dcgettext (((void *)0),
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2894 "invalid number of chunks"
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2895 , 5)
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2896 , 0);
executed 97 times by 1 test: n_units = xdectoumax (optarg, 1, (18446744073709551615UL) , "", dcgettext (((void *)0), "invalid number of chunks" , 5) , 0);
Executed by:
  • split
97
2897 break;
executed 143 times by 1 test: break;
Executed by:
  • split
143
2898-
2899 case
executed 2 times by 1 test: case 'u':
Executed by:
  • split
'u':
executed 2 times by 1 test: case 'u':
Executed by:
  • split
2
2900 unbuffered = -
2901 1-
2902 ;-
2903 break;
executed 2 times by 1 test: break;
Executed by:
  • split
2
2904-
2905 case
executed 21 times by 1 test: case 't':
Executed by:
  • split
't':
executed 21 times by 1 test: case 't':
Executed by:
  • split
21
2906 {-
2907 char neweol = optarg[0];-
2908 if (! neweol
! neweolDescription
TRUEnever evaluated
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
)
0-21
2909 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2910 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2911 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2912 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2913 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2914 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2915 "empty record separator"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2916 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2917 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2918 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2919 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2920 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2921 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2922 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2923 "empty record separator"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2924 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2925 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2926 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2927 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"empty record separator\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "empty record separator" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
2928 if (optarg[1]
optarg[1]Description
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
)
7-14
2929 {-
2930 if ((
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2931 __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2932 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2933 ) && __builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2934 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2935 ) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2936 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2937 ), __s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2938 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2939 ), (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2940 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2941 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2942 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2943 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2944 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2945 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2946 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2947 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2948 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2949 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2950 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2951 ) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2952 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2953 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2954 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2955 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2956 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2957 ) == 1) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2958 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2959 ), __s1_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2960 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2961 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2962 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2963 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2964 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2965 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2966 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2967 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2968 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2969 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2970 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2971 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2972 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2973 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-4
2974 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2975 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-4
2976 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2977 ))[2] - __s2[2]); if (__s1_len > 2
__s1_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-4
2978 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
0-4
2979 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( optarg ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-4
2980 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2981 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2982 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2983 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2984 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2985 ) == 1) && (__s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2986 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2987 ), __s2_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2988 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2989 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2990 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2991 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2992 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2993 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2994 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2995 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2996 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2997 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2998 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
2999 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3000 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3001 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-7
3002 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3003 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-4
3004 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3005 ))[2] - __s2[2]); if (__s2_len > 2
__s2_len > 2Description
TRUEnever evaluated
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( "\\0" ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-4
3006 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "\\0" ))[3] - __s2[3]);
0-4
3007 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "\\0" ))[3] - __s2[3]);
} } __result; }))) : __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
0-4
3008 optarg
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3009 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3010 "\\0"
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3011 )))); })
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
3-4
3012 == 0)
( __extension_...)))); }) == 0)Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
)
3-4
3013 neweol = '\0';
executed 4 times by 1 test: neweol = '\0';
Executed by:
  • split
4
3014 else-
3015 {-
3016-
3017-
3018-
3019-
3020 ((!!sizeof (struct { _Static_assert (-
3021 1-
3022 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multi-character separator %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
3023 1-
3024 , 0, -
3025 dcgettext (((void *)0), -
3026 "multi-character separator %s"-
3027 , 5)-
3028 , quote (optarg)), ((-
3029 0-
3030 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
3031 1-
3032 , 0, -
3033 dcgettext (((void *)0), -
3034 "multi-character separator %s"-
3035 , 5)-
3036 , quote (optarg)), ((-
3037 0-
3038 ) ? (void) 0 : __builtin_unreachable ()))))-
3039 ;-
3040 }
never executed: end of block
0
3041 }-
3042-
3043 if (0 <= eolchar
0 <= eolcharDescription
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 15 times by 1 test
Evaluated by:
  • split
&& neweol != eolchar
neweol != eolcharDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • split
FALSEevaluated 1 time by 1 test
Evaluated by:
  • split
)
1-15
3044 {-
3045 ((!!sizeof (struct { _Static_assert (-
3046 1-
3047 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"multiple separator characters specified\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
3048 1-
3049 , 0, -
3050 dcgettext (((void *)0), -
3051 "multiple separator characters specified"-
3052 , 5)-
3053 ), ((-
3054 0-
3055 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
3056 1-
3057 , 0, -
3058 dcgettext (((void *)0), -
3059 "multiple separator characters specified"-
3060 , 5)-
3061 ), ((-
3062 0-
3063 ) ? (void) 0 : __builtin_unreachable ()))))-
3064 ;-
3065 }
never executed: end of block
0
3066-
3067 eolchar = neweol;-
3068 }-
3069 break;
executed 16 times by 1 test: break;
Executed by:
  • split
16
3070-
3071 case
executed 1 time by 1 test: case '0':
Executed by:
  • split
'0':
executed 1 time by 1 test: case '0':
Executed by:
  • split
1
3072 case
executed 2 times by 1 test: case '1':
Executed by:
  • split
'1':
executed 2 times by 1 test: case '1':
Executed by:
  • split
2
3073 case
never executed: case '2':
'2':
never executed: case '2':
0
3074 case
never executed: case '3':
'3':
never executed: case '3':
0
3075 case
never executed: case '4':
'4':
never executed: case '4':
0
3076 case
never executed: case '5':
'5':
never executed: case '5':
0
3077 case
never executed: case '6':
'6':
never executed: case '6':
0
3078 case
never executed: case '7':
'7':
never executed: case '7':
0
3079 case
never executed: case '8':
'8':
never executed: case '8':
0
3080 case
executed 19 times by 1 test: case '9':
Executed by:
  • split
'9':
executed 19 times by 1 test: case '9':
Executed by:
  • split
19
3081 if (split_type == type_undef
split_type == type_undefDescription
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 19 times by 1 test
Evaluated by:
  • split
)
3-19
3082 {-
3083 split_type = type_digits;-
3084 n_units = 0;-
3085 }
executed 3 times by 1 test: end of block
Executed by:
  • split
3
3086 if (split_type != type_undef
split_type != type_undefDescription
TRUEevaluated 22 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& split_type != type_digits
split_type != type_digitsDescription
TRUEnever evaluated
FALSEevaluated 22 times by 1 test
Evaluated by:
  • split
)
0-22
3087 do { error (0, 0, -
3088 dcgettext (((void *)0), -
3089 "cannot split in more than one way"-
3090 , 5)-
3091 ); usage (-
3092 1-
3093 ); }
never executed: end of block
while (0);
0
3094 if (digits_optind != 0
digits_optind != 0Description
TRUEevaluated 19 times by 1 test
Evaluated by:
  • split
FALSEevaluated 3 times by 1 test
Evaluated by:
  • split
&& digits_optind != this_optind
digits_optind != this_optindDescription
TRUEnever evaluated
FALSEevaluated 19 times by 1 test
Evaluated by:
  • split
)
0-19
3095 n_units = 0;
never executed: n_units = 0;
0
3096 digits_optind = this_optind;-
3097 if (!( (void) (&(n_units) == (uintmax_t *)
!( (void) (&(n... '0')), 1 )) )Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
1-21
3098 ((void *)0)
!( (void) (&(n... '0')), 1 )) )Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
1-21
3099 ), (void) (!!sizeof (struct { _Static_assert (! (! ((uintmax_t) 0 < (uintmax_t) -1)), "verify_true (" "! TYPE_SIGNED (uintmax_t)" ")"); int _gl_dummy; })), (void) (!!sizeof (struct { _Static_assert (sizeof (n_units) == sizeof (uintmax_t), "verify_true (" "sizeof (n_units) == sizeof (uintmax_t)" ")"); int _gl_dummy; })), (((
(uintmax_t) -1...10 < (n_units)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
uintmax_t) -1 / 10 < (n_units)
(uintmax_t) -1...10 < (n_units)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
|| (
(uintmax_t) ((...)) < (n_units)Description
TRUEnever evaluated
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
uintmax_t) ((n_units) * 10 + (c - '0')) < (n_units)
(uintmax_t) ((...)) < (n_units)Description
TRUEnever evaluated
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
) ?
!( (void) (&(n... '0')), 1 )) )Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
0-21
3100 0
!( (void) (&(n... '0')), 1 )) )Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
1-21
3101 : (((n_units) = (n_units) * 10 + (c - '0')),
!( (void) (&(n... '0')), 1 )) )Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
1-21
3102 1
!( (void) (&(n... '0')), 1 )) )Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
1-21
3103 )) )
!( (void) (&(n... '0')), 1 )) )Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 21 times by 1 test
Evaluated by:
  • split
)
1-21
3104 {-
3105 char buffer[((((((sizeof (uintmax_t) * 8) - (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) + 1)];-
3106 ((!!sizeof (struct { _Static_assert (-
3107 1-
3108 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"line count option -%s%c... is too large\", 5), umaxtostr (n_units, buffer), c), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
3109 1-
3110 , 0, -
3111 dcgettext (((void *)0), -
3112 "line count option -%s%c... is too large"-
3113 , 5)-
3114 , umaxtostr (n_units, buffer), c), ((-
3115 0-
3116 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
3117 1-
3118 , 0, -
3119 dcgettext (((void *)0), -
3120 "line count option -%s%c... is too large"-
3121 , 5)-
3122 , umaxtostr (n_units, buffer), c), ((-
3123 0-
3124 ) ? (void) 0 : __builtin_unreachable ()))))-
3125-
3126 ;-
3127 }
never executed: end of block
0
3128 break;
executed 21 times by 1 test: break;
Executed by:
  • split
21
3129-
3130 case
executed 16 times by 1 test: case 'd':
Executed by:
  • split
'd':
executed 16 times by 1 test: case 'd':
Executed by:
  • split
16
3131 case
executed 7 times by 1 test: case 'x':
Executed by:
  • split
'x':
executed 7 times by 1 test: case 'x':
Executed by:
  • split
7
3132 if (c == 'd'
c == 'd'Description
TRUEevaluated 16 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
)
7-16
3133 suffix_alphabet = "0123456789";
executed 16 times by 1 test: suffix_alphabet = "0123456789";
Executed by:
  • split
16
3134 else-
3135 suffix_alphabet = "0123456789abcdef";
executed 7 times by 1 test: suffix_alphabet = "0123456789abcdef";
Executed by:
  • split
7
3136 if (optarg
optargDescription
TRUEevaluated 11 times by 1 test
Evaluated by:
  • split
FALSEevaluated 12 times by 1 test
Evaluated by:
  • split
)
11-12
3137 {-
3138 if (strlen (optarg) !=
strlen (optarg...fix_alphabet )Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
4-7
3139 __builtin_strspn (
strlen (optarg...fix_alphabet )Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
4-7
3140 optarg
strlen (optarg...fix_alphabet )Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
4-7
3141 ,
strlen (optarg...fix_alphabet )Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
4-7
3142 suffix_alphabet
strlen (optarg...fix_alphabet )Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
4-7
3143 )
strlen (optarg...fix_alphabet )Description
TRUEevaluated 4 times by 1 test
Evaluated by:
  • split
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
4-7
3144 )-
3145 {-
3146 error (0, 0,-
3147 (c == 'd') ?-
3148 -
3149 dcgettext (((void *)0), -
3150 "%s: invalid start value for numerical suffix"-
3151 , 5) -
3152 :-
3153 -
3154 dcgettext (((void *)0), -
3155 "%s: invalid start value for hexadecimal suffix"-
3156 , 5)-
3157 ,-
3158 quote (optarg));-
3159 usage (-
3160 1-
3161 );-
3162 }
never executed: end of block
0
3163 else-
3164 {-
3165-
3166 while (*
*optarg == '0'Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
optarg == '0'
*optarg == '0'Description
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • split
&& *(
*(optarg + 1) != '\0'Description
TRUEnever evaluated
FALSEnever evaluated
optarg + 1) != '\0'
*(optarg + 1) != '\0'Description
TRUEnever evaluated
FALSEnever evaluated
)
0-7
3167 optarg++;
never executed: optarg++;
0
3168 numeric_suffix_start = optarg;-
3169 }
executed 7 times by 1 test: end of block
Executed by:
  • split
7
3170 }-
3171 break;
executed 19 times by 1 test: break;
Executed by:
  • split
19
3172-
3173 case
executed 36 times by 1 test: case 'e':
Executed by:
  • split
'e':
executed 36 times by 1 test: case 'e':
Executed by:
  • split
36
3174 elide_empty_files = -
3175 1-
3176 ;-
3177 break;
executed 36 times by 1 test: break;
Executed by:
  • split
36
3178-
3179 case
executed 10 times by 1 test: case FILTER_OPTION:
Executed by:
  • split
FILTER_OPTION:
executed 10 times by 1 test: case FILTER_OPTION:
Executed by:
  • split
10
3180 filter_command = optarg;-
3181 break;
executed 10 times by 1 test: break;
Executed by:
  • split
10
3182-
3183 case
executed 310 times by 1 test: case IO_BLKSIZE_OPTION:
Executed by:
  • split
IO_BLKSIZE_OPTION:
executed 310 times by 1 test: case IO_BLKSIZE_OPTION:
Executed by:
  • split
310
3184 in_blk_size = xdectoumax (optarg, 1, -
3185 (18446744073709551615UL) -
3186 - page_size,-
3187 multipliers, -
3188 dcgettext (((void *)0), -
3189 "invalid IO block size"-
3190 , 5)-
3191 , 0);-
3192 break;
executed 310 times by 1 test: break;
Executed by:
  • split
310
3193-
3194 case
executed 2 times by 1 test: case VERBOSE_OPTION:
Executed by:
  • split
VERBOSE_OPTION:
executed 2 times by 1 test: case VERBOSE_OPTION:
Executed by:
  • split
2
3195 verbose = -
3196 1-
3197 ;-
3198 break;
executed 2 times by 1 test: break;
Executed by:
  • split
2
3199-
3200 case
executed 14 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • split
GETOPT_HELP_CHAR:
executed 14 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • split
usage (
14
3201 0-
3202 ); break;
never executed: break;
;
0
3203-
3204 case
executed 16 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • split
GETOPT_VERSION_CHAR:
executed 16 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • split
version_etc (
16
3205 stdout-
3206 , "split", "GNU coreutils", Version, ("Torbjorn Granlund"), ("Richard M. Stallman"), (char *) -
3207 ((void *)0)-
3208 ); exit (
executed 16 times by 1 test: exit ( 0 );
Executed by:
  • split
16
3209 0
executed 16 times by 1 test: exit ( 0 );
Executed by:
  • split
16
3210 );
executed 16 times by 1 test: exit ( 0 );
Executed by:
  • split
break;
never executed: break;
;
0-16
3211-
3212 default
executed 4 times by 1 test: default:
Executed by:
  • split
:
executed 4 times by 1 test: default:
Executed by:
  • split
4
3213 usage (-
3214 1-
3215 );-
3216 }
never executed: end of block
0
3217 }-
3218-
3219 if (k_units != 0
k_units != 0Description
TRUEevaluated 51 times by 1 test
Evaluated by:
  • split
FALSEevaluated 366 times by 1 test
Evaluated by:
  • split
&& filter_command
filter_commandDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 50 times by 1 test
Evaluated by:
  • split
)
1-366
3220 {-
3221 error (0, 0, -
3222 dcgettext (((void *)0), -
3223 "--filter does not process a chunk extracted to stdout"-
3224 , 5)-
3225 );-
3226 usage (-
3227 1-
3228 );-
3229 }
never executed: end of block
0
3230-
3231-
3232 if (split_type == type_undef
split_type == type_undefDescription
TRUEevaluated 6 times by 1 test
Evaluated by:
  • split
FALSEevaluated 410 times by 1 test
Evaluated by:
  • split
)
6-410
3233 {-
3234 split_type = type_lines;-
3235 n_units = 1000;-
3236 }
executed 6 times by 1 test: end of block
Executed by:
  • split
6
3237-
3238 if (n_units == 0
n_units == 0Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • split
FALSEevaluated 415 times by 1 test
Evaluated by:
  • split
)
1-415
3239 {-
3240 error (0, 0, "%s: %s", -
3241 dcgettext (((void *)0), -
3242 "invalid number of lines"-
3243 , 5)-
3244 , quote ("0"));-
3245 usage (-
3246 1-
3247 );-
3248 }
never executed: end of block
0
3249-
3250 if (eolchar < 0
eolchar < 0Description
TRUEevaluated 402 times by 1 test
Evaluated by:
  • split
FALSEevaluated 13 times by 1 test
Evaluated by:
  • split
)
13-402
3251 eolchar = '\n';
executed 402 times by 1 test: eolchar = '\n';
Executed by:
  • split
402
3252-
3253 set_suffix_length (n_units, split_type);-
3254-
3255-
3256-
3257 if (optind < argc
optind < argcDescription
TRUEevaluated 400 times by 1 test
Evaluated by:
  • split
FALSEevaluated 14 times by 1 test
Evaluated by:
  • split
)
14-400
3258 infile = argv[optind++];
executed 400 times by 1 test: infile = argv[optind++];
Executed by:
  • split
400
3259-
3260 if (optind < argc
optind < argcDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 407 times by 1 test
Evaluated by:
  • split
)
7-407
3261 outbase = argv[optind++];
executed 7 times by 1 test: outbase = argv[optind++];
Executed by:
  • split
7
3262-
3263 if (optind < argc
optind < argcDescription
TRUEnever evaluated
FALSEevaluated 414 times by 1 test
Evaluated by:
  • split
)
0-414
3264 {-
3265 error (0, 0, -
3266 dcgettext (((void *)0), -
3267 "extra operand %s"-
3268 , 5)-
3269 , quote (argv[optind]));-
3270 usage (-
3271 1-
3272 );-
3273 }
never executed: end of block
0
3274-
3275-
3276-
3277 if (numeric_suffix_start
numeric_suffix_startDescription
TRUEevaluated 7 times by 1 test
Evaluated by:
  • split
FALSEevaluated 407 times by 1 test
Evaluated by:
  • split
&& strlen (numeric_suffix_start) > suffix_length
strlen (numeri... suffix_lengthDescription
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 4 times by 1 test
Evaluated by:
  • split
)
3-407
3278 {-
3279 error (0, 0, -
3280 dcgettext (((void *)0), -
3281 "numerical suffix start value is too large " "for the suffix length"-
3282 , 5)-
3283 -
3284 );-
3285 usage (-
3286 1-
3287 );-
3288 }
never executed: end of block
0
3289-
3290-
3291 if (! (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3292 __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3293 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3294 ) && __builtin_constant_p (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3295 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3296 ) && (__s1_len = __builtin_strlen (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3297 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3298 ), __s2_len = __builtin_strlen (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3299 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3300 ), (!((size_t)(const void *)((
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3301 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3302 ) + 1) - (size_t)(const void *)(
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3303 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3304 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3305 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3306 ) + 1) - (size_t)(const void *)(
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3307 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3308 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3309 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3310 ,
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3311 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3312 ) : (__builtin_constant_p (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3313 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3314 ) && ((size_t)(const void *)((
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3315 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3316 ) + 1) - (size_t)(const void *)(
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3317 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3318 ) == 1) && (__s1_len = __builtin_strlen (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3319 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3320 ), __s1_len < 4) ? (__builtin_constant_p (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3321 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3322 ) && ((size_t)(const void *)((
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3323 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3324 ) + 1) - (size_t)(const void *)(
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3325 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3326 ) == 1) ? __builtin_strcmp (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3327 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3328 ,
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3329 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3330 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3331 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3332 ); int __result = (((const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3333 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3334 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-394
3335 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3336 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-394
3337 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3338 ))[2] - __s2[2]); if (__s1_len > 2
__s1_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( infile ))[3] - __s2[3]);
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-394
3339 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( infile ))[3] - __s2[3]);
0-394
3340 ))[3] - __s2[3]);
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( infile ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-394
3341 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3342 ) && ((size_t)(const void *)((
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3343 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3344 ) + 1) - (size_t)(const void *)(
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3345 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3346 ) == 1) && (__s2_len = __builtin_strlen (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3347 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3348 ), __s2_len < 4) ? (__builtin_constant_p (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3349 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3350 ) && ((size_t)(const void *)((
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3351 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3352 ) + 1) - (size_t)(const void *)(
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3353 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3354 ) == 1) ? __builtin_strcmp (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3355 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3356 ,
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3357 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3358 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3359 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3360 ); int __result = (((const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3361 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3362 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEevaluated 411 times by 1 test
Evaluated by:
  • split
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEevaluated 17 times by 1 test
Evaluated by:
  • split
FALSEevaluated 394 times by 1 test
Evaluated by:
  • split
) { __result = (((const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-411
3363 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3364 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEnever evaluated
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-394
3365 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3366 ))[2] - __s2[2]); if (__s2_len > 2
__s2_len > 2Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) __result = (((const unsigned char *) (const char *) (
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-394
3367 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
0-394
3368 ))[3] - __s2[3]);
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
}
never executed: end of block
} __result; }))) : __builtin_strcmp (
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
0-394
3369 infile
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3370 ,
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3371 "-"
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3372 )))); })
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3373 == 0)
! ( __extensio...)))); }) == 0)Description
TRUEevaluated 394 times by 1 test
Evaluated by:
  • split
FALSEevaluated 17 times by 1 test
Evaluated by:
  • split
17-394
3374 && fd_reopen (
fd_reopen ( 0 ...e, 00 , 0) < 0Description
TRUEnever evaluated
FALSEevaluated 394 times by 1 test
Evaluated by:
  • split
0-394
3375 0
fd_reopen ( 0 ...e, 00 , 0) < 0Description
TRUEnever evaluated
FALSEevaluated 394 times by 1 test
Evaluated by:
  • split
0-394
3376 , infile,
fd_reopen ( 0 ...e, 00 , 0) < 0Description
TRUEnever evaluated
FALSEevaluated 394 times by 1 test
Evaluated by:
  • split
0-394
3377 00
fd_reopen ( 0 ...e, 00 , 0) < 0Description
TRUEnever evaluated
FALSEevaluated 394 times by 1 test
Evaluated by:
  • split
0-394
3378 , 0) < 0
fd_reopen ( 0 ...e, 00 , 0) < 0Description
TRUEnever evaluated
FALSEevaluated 394 times by 1 test
Evaluated by:
  • split
)
0-394
3379 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3380 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3381 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3382 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3383 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3384 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3385 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3386 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3387 "cannot open %s for reading"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3388 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3389 , quotearg_style (shell_escape_always_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3390 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3391 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3392 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3393 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3394 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3395 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3396 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3397 "cannot open %s for reading"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3398 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3399 , quotearg_style (shell_escape_always_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3400 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3401 ) ? (void) 0 : __builtin_unreachable ()))))
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3402 ;
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"cannot open %s for reading\", 5), quotearg_style (shell_escape_always_quoting_style, infile)), assume (false))" ")"); int _gl_...) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "cannot open %s for reading" , 5) , quotearg_style (shell_escape_always_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
3403-
3404-
3405 xset_binary_mode (-
3406 0-
3407 , -
3408 0-
3409 );-
3410-
3411-
3412-
3413 if (fstat (
fstat ( 0 , &in_stat_buf) != 0Description
TRUEnever evaluated
FALSEevaluated 411 times by 1 test
Evaluated by:
  • split
0-411
3414 0
fstat ( 0 , &in_stat_buf) != 0Description
TRUEnever evaluated
FALSEevaluated 411 times by 1 test
Evaluated by:
  • split
0-411
3415 , &in_stat_buf) != 0
fstat ( 0 , &in_stat_buf) != 0Description
TRUEnever evaluated
FALSEevaluated 411 times by 1 test
Evaluated by:
  • split
)
0-411
3416 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3417 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3418 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3419 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3420 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3421 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3422 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3423 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3424 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3425 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3426 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3427 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3428 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3429 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3430 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3431-
3432 -
3433 _Bool -
3434 specified_buf_size = !! in_blk_size;-
3435 if (! specified_buf_size
! specified_buf_sizeDescription
TRUEevaluated 101 times by 1 test
Evaluated by:
  • split
FALSEevaluated 310 times by 1 test
Evaluated by:
  • split
)
101-310
3436 in_blk_size = io_blksize (in_stat_buf);
executed 101 times by 1 test: in_blk_size = io_blksize (in_stat_buf);
Executed by:
  • split
101
3437-
3438 void *b = xmalloc (in_blk_size + 1 + page_size - 1);-
3439 char *buf = ptr_align (b, page_size);-
3440 size_t initial_read = -
3441 (18446744073709551615UL)-
3442 ;-
3443-
3444 if (split_type == type_chunk_bytes
split_type == type_chunk_bytesDescription
TRUEevaluated 17 times by 1 test
Evaluated by:
  • split
FALSEevaluated 394 times by 1 test
Evaluated by:
  • split
|| split_type == type_chunk_lines
split_type == type_chunk_linesDescription
TRUEevaluated 104 times by 1 test
Evaluated by:
  • split
FALSEevaluated 290 times by 1 test
Evaluated by:
  • split
)
17-394
3445 {-
3446 file_size = input_file_size (-
3447 0-
3448 , &in_stat_buf,-
3449 buf, in_blk_size);-
3450 if (file_size < 0
file_size < 0Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • split
FALSEevaluated 118 times by 1 test
Evaluated by:
  • split
)
3-118
3451 ((
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
!!sizeof (struct { _Static_assert (
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3452 1
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3453 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3454 1
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3455 ,
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3456 (*__errno_location ())
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3457 ,
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3458 dcgettext (((void *)0),
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3459 "%s: cannot determine file size"
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3460 , 5)
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3461 , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3462 0
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3463 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3464 1
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3465 ,
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3466 (*__errno_location ())
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3467 ,
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3468 dcgettext (((void *)0),
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3469 "%s: cannot determine file size"
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3470 , 5)
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3471 , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3472 0
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3473 ) ? (void) 0 : __builtin_unreachable ()))))
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3474 ;
executed 3 times by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"%s: cannot determine file size\", 5), quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); ...d) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "%s: cannot determine file size" , 5) , quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • split
3
3475 initial_read = -
3476 (((
(( file_size )...in_blk_size ))Description
TRUEevaluated 43 times by 1 test
Evaluated by:
  • split
FALSEevaluated 75 times by 1 test
Evaluated by:
  • split
43-75
3477 file_size
(( file_size )...in_blk_size ))Description
TRUEevaluated 43 times by 1 test
Evaluated by:
  • split
FALSEevaluated 75 times by 1 test
Evaluated by:
  • split
43-75
3478 )<(
(( file_size )...in_blk_size ))Description
TRUEevaluated 43 times by 1 test
Evaluated by:
  • split
FALSEevaluated 75 times by 1 test
Evaluated by:
  • split
43-75
3479 in_blk_size
(( file_size )...in_blk_size ))Description
TRUEevaluated 43 times by 1 test
Evaluated by:
  • split
FALSEevaluated 75 times by 1 test
Evaluated by:
  • split
43-75
3480 ))
(( file_size )...in_blk_size ))Description
TRUEevaluated 43 times by 1 test
Evaluated by:
  • split
FALSEevaluated 75 times by 1 test
Evaluated by:
  • split
?(
43-75
3481 file_size-
3482 ):(-
3483 in_blk_size-
3484 ))-
3485 ;-
3486-
3487 if (((
((off_t) (! (!...1))) < n_unitsDescription
TRUEnever evaluated
FALSEevaluated 118 times by 1 test
Evaluated by:
  • split
off_t) (! (! ((off_t) 0 < (off_t) -1)) ? (off_t) -1 : ((((off_t) 1 << ((sizeof (off_t) * 8) - 2)) - 1) * 2 + 1))) < n_units
((off_t) (! (!...1))) < n_unitsDescription
TRUEnever evaluated
FALSEevaluated 118 times by 1 test
Evaluated by:
  • split
)
0-118
3488 {-
3489 char buffer[((((((sizeof (uintmax_t) * 8) - (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (uintmax_t)) 0 < (__typeof__ (uintmax_t)) -1))) + 1)];-
3490 ((!!sizeof (struct { _Static_assert (-
3491 1-
3492 , "verify_expr (" "1" ", " "(error (1, 75, \"%s: %s\", dcgettext (((void *)0), \"invalid number of chunks\", 5), quote (umaxtostr (n_units, buffer))), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
3493 1-
3494 , -
3495 75-
3496 , "%s: %s", -
3497 dcgettext (((void *)0), -
3498 "invalid number of chunks"-
3499 , 5)-
3500 , quote (umaxtostr (n_units, buffer))), ((-
3501 0-
3502 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
3503 1-
3504 , -
3505 75-
3506 , "%s: %s", -
3507 dcgettext (((void *)0), -
3508 "invalid number of chunks"-
3509 , 5)-
3510 , quote (umaxtostr (n_units, buffer))), ((-
3511 0-
3512 ) ? (void) 0 : __builtin_unreachable ()))))-
3513-
3514 ;-
3515 }
never executed: end of block
0
3516-
3517-
3518 file_size = -
3519 (((
(( file_size )>( n_units ))Description
TRUEevaluated 107 times by 1 test
Evaluated by:
  • split
FALSEevaluated 11 times by 1 test
Evaluated by:
  • split
11-107
3520 file_size
(( file_size )>( n_units ))Description
TRUEevaluated 107 times by 1 test
Evaluated by:
  • split
FALSEevaluated 11 times by 1 test
Evaluated by:
  • split
11-107
3521 )>(
(( file_size )>( n_units ))Description
TRUEevaluated 107 times by 1 test
Evaluated by:
  • split
FALSEevaluated 11 times by 1 test
Evaluated by:
  • split
11-107
3522 n_units
(( file_size )>( n_units ))Description
TRUEevaluated 107 times by 1 test
Evaluated by:
  • split
FALSEevaluated 11 times by 1 test
Evaluated by:
  • split
11-107
3523 ))
(( file_size )>( n_units ))Description
TRUEevaluated 107 times by 1 test
Evaluated by:
  • split
FALSEevaluated 11 times by 1 test
Evaluated by:
  • split
?(
11-107
3524 file_size-
3525 ):(-
3526 n_units-
3527 ))-
3528 ;-
3529 }
executed 118 times by 1 test: end of block
Executed by:
  • split
118
3530-
3531-
3532-
3533 if (filter_command
filter_commandDescription
TRUEevaluated 8 times by 1 test
Evaluated by:
  • split
FALSEevaluated 400 times by 1 test
Evaluated by:
  • split
)
8-400
3534 {-
3535 struct sigaction act;-
3536 sigemptyset (&newblocked);-
3537 sigaction (-
3538 13-
3539 , -
3540 ((void *)0)-
3541 , &act);-
3542 if (act.
act. __sigacti...ghandler_t) 1)Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
3543 __sigaction_handler.sa_handler
act. __sigacti...ghandler_t) 1)Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
3544 !=
act. __sigacti...ghandler_t) 1)Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
3545 ((__sighandler_t) 1)
act. __sigacti...ghandler_t) 1)Description
TRUEnever evaluated
FALSEevaluated 8 times by 1 test
Evaluated by:
  • split
0-8
3546 )-
3547 sigaddset (&newblocked,
never executed: sigaddset (&newblocked, 13 );
0
3548 13
never executed: sigaddset (&newblocked, 13 );
0
3549 );
never executed: sigaddset (&newblocked, 13 );
0
3550 sigprocmask (-
3551 0-
3552 , &newblocked, &oldblocked);-
3553 }
executed 8 times by 1 test: end of block
Executed by:
  • split
8
3554-
3555 switch (split_type)-
3556 {-
3557 case
executed 1 time by 1 test: case type_digits:
Executed by:
  • split
type_digits:
executed 1 time by 1 test: case type_digits:
Executed by:
  • split
1
3558 case
executed 19 times by 1 test: case type_lines:
Executed by:
  • split
type_lines:
executed 19 times by 1 test: case type_lines:
Executed by:
  • split
19
3559 lines_split (n_units, buf, in_blk_size);-
3560 break;
executed 19 times by 1 test: break;
Executed by:
  • split
19
3561-
3562 case
executed 14 times by 1 test: case type_bytes:
Executed by:
  • split
type_bytes:
executed 14 times by 1 test: case type_bytes:
Executed by:
  • split
14
3563 bytes_split (n_units, buf, in_blk_size, -
3564 (18446744073709551615UL)-
3565 , 0);-
3566 break;
executed 10 times by 1 test: break;
Executed by:
  • split
10
3567-
3568 case
executed 237 times by 1 test: case type_byteslines:
Executed by:
  • split
type_byteslines:
executed 237 times by 1 test: case type_byteslines:
Executed by:
  • split
237
3569 line_bytes_split (n_units, buf, in_blk_size);-
3570 break;
executed 233 times by 1 test: break;
Executed by:
  • split
233
3571-
3572 case
executed 16 times by 1 test: case type_chunk_bytes:
Executed by:
  • split
type_chunk_bytes:
executed 16 times by 1 test: case type_chunk_bytes:
Executed by:
  • split
16
3573 if (k_units == 0
k_units == 0Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • split
FALSEevaluated 10 times by 1 test
Evaluated by:
  • split
)
6-10
3574 bytes_split (file_size / n_units, buf, in_blk_size, initial_read,
executed 6 times by 1 test: bytes_split (file_size / n_units, buf, in_blk_size, initial_read, n_units);
Executed by:
  • split
6
3575 n_units);
executed 6 times by 1 test: bytes_split (file_size / n_units, buf, in_blk_size, initial_read, n_units);
Executed by:
  • split
6
3576 else-
3577 bytes_chunk_extract (k_units, n_units, buf, in_blk_size, initial_read,
executed 10 times by 1 test: bytes_chunk_extract (k_units, n_units, buf, in_blk_size, initial_read, file_size);
Executed by:
  • split
10
3578 file_size);
executed 10 times by 1 test: bytes_chunk_extract (k_units, n_units, buf, in_blk_size, initial_read, file_size);
Executed by:
  • split
10
3579 break;
executed 16 times by 1 test: break;
Executed by:
  • split
16
3580-
3581 case
executed 102 times by 1 test: case type_chunk_lines:
Executed by:
  • split
type_chunk_lines:
executed 102 times by 1 test: case type_chunk_lines:
Executed by:
  • split
102
3582 lines_chunk_split (k_units, n_units, buf, in_blk_size, initial_read,-
3583 file_size);-
3584 break;
executed 102 times by 1 test: break;
Executed by:
  • split
102
3585-
3586 case
executed 19 times by 1 test: case type_rr:
Executed by:
  • split
type_rr:
executed 19 times by 1 test: case type_rr:
Executed by:
  • split
19
3587-
3588-
3589 lines_rr (k_units, n_units, buf, in_blk_size);-
3590 break;
executed 19 times by 1 test: break;
Executed by:
  • split
19
3591-
3592 default
never executed: default:
:
never executed: default:
0
3593 abort ();
never executed: abort ();
0
3594 }-
3595-
3596 ;-
3597-
3598 if (close (
close ( 0 ) != 0Description
TRUEnever evaluated
FALSEevaluated 399 times by 1 test
Evaluated by:
  • split
0-399
3599 0
close ( 0 ) != 0Description
TRUEnever evaluated
FALSEevaluated 399 times by 1 test
Evaluated by:
  • split
0-399
3600 ) != 0
close ( 0 ) != 0Description
TRUEnever evaluated
FALSEevaluated 399 times by 1 test
Evaluated by:
  • split
)
0-399
3601 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
!!sizeof (struct { _Static_assert (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3602 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3603 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3604 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3605 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3606 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3607 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3608 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3609 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3610 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3611 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3612 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3613 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3614 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3615 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()...lon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, infile)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
3616 closeout (-
3617 ((void *)0)-
3618 , output_desc, filter_pid, outfile);-
3619-
3620 return
executed 399 times by 1 test: return 0 ;
Executed by:
  • split
executed 399 times by 1 test: return 0 ;
Executed by:
  • split
399
3621 0
executed 399 times by 1 test: return 0 ;
Executed by:
  • split
399
3622 ;
executed 399 times by 1 test: return 0 ;
Executed by:
  • split
399
3623}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.1.2