OpenCoverage

pr.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/coreutils/src/src/pr.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3struct COLUMN;-
4struct COLUMN-
5 {-
6 FILE *fp;-
7 char const *name;-
8 enum-
9 {-
10 OPEN,-
11 FF_FOUND,-
12-
13 ON_HOLD,-
14 CLOSED-
15 }-
16 status;-
17-
18-
19 -
20 _Bool -
21 (*print_func) (struct COLUMN *);-
22-
23-
24 void (*char_func) (char);-
25-
26 int current_line;-
27 int lines_stored;-
28 int lines_to_print;-
29 int start_position;-
30 -
31 _Bool -
32 numbered;-
33 -
34 _Bool -
35 full_page_printed;-
36-
37-
38-
39-
40-
41 };-
42-
43typedef struct COLUMN COLUMN;-
44-
45static int char_to_clump (char c);-
46static -
47 _Bool -
48 read_line (COLUMN *p);-
49static -
50 _Bool -
51 print_page (void);-
52static -
53 _Bool -
54 print_stored (COLUMN *p);-
55static -
56 _Bool -
57 open_file (char *name, COLUMN *p);-
58static -
59 _Bool -
60 skip_to_page (uintmax_t page);-
61static void print_header (void);-
62static void pad_across_to (int position);-
63static void add_line_number (COLUMN *p);-
64static void getoptnum (const char *n_str, int min, int *num,-
65 const char *errfmt);-
66static void getoptarg (char *arg, char switch_char, char *character,-
67 int *number);-
68static void print_files (int number_of_files, char **av);-
69static void init_parameters (int number_of_files);-
70static void init_header (char const *filename, int desc);-
71static -
72 _Bool -
73 init_fps (int number_of_files, char **av);-
74static void init_funcs (void);-
75static void init_store_cols (void);-
76static void store_columns (void);-
77static void balance (int total_stored);-
78static void store_char (char c);-
79static void pad_down (unsigned int lines);-
80static void read_rest_of_line (COLUMN *p);-
81static void skip_read (COLUMN *p, int column_number);-
82static void print_char (char c);-
83static void cleanup (void);-
84static void print_sep_string (void);-
85static void separator_string (const char *optarg_S);-
86-
87-
88static COLUMN *column_vector;-
89-
90-
91-
92-
93-
94static char *buff;-
95-
96-
97-
98static unsigned int buff_current;-
99-
100-
101-
102static size_t buff_allocated;-
103-
104-
105-
106-
107-
108static int *line_vector;-
109-
110-
111-
112-
113-
114-
115static int *end_vector;-
116-
117-
118static -
119 _Bool -
120 parallel_files = -
121 0-
122 ;-
123-
124-
125-
126static -
127 _Bool -
128 align_empty_cols;-
129-
130-
131-
132static -
133 _Bool -
134 empty_line;-
135-
136-
137-
138-
139-
140-
141static -
142 _Bool -
143 FF_only;-
144-
145-
146-
147-
148static -
149 _Bool -
150 explicit_columns = -
151 0-
152 ;-
153-
154-
155static -
156 _Bool -
157 extremities = -
158 1-
159 ;-
160-
161-
162-
163static -
164 _Bool -
165 keep_FF = -
166 0-
167 ;-
168static -
169 _Bool -
170 print_a_FF = -
171 0-
172 ;-
173-
174-
175-
176static -
177 _Bool -
178 print_a_header;-
179-
180-
181static -
182 _Bool -
183 use_form_feed = -
184 0-
185 ;-
186-
187-
188static -
189 _Bool -
190 have_read_stdin = -
191 0-
192 ;-
193-
194-
195static -
196 _Bool -
197 print_across_flag = -
198 0-
199 ;-
200-
201-
202static -
203 _Bool -
204 storing_columns = -
205 1-
206 ;-
207-
208-
209-
210-
211-
212static -
213 _Bool -
214 balance_columns = -
215 0-
216 ;-
217-
218-
219static int lines_per_page = 66;-
220-
221-
222-
223enum { lines_per_header = 5 };-
224static int lines_per_body;-
225enum { lines_per_footer = 5 };-
226-
227-
228-
229static int chars_per_line = 72;-
230-
231-
232static -
233 _Bool -
234 truncate_lines = -
235 0-
236 ;-
237-
238-
239-
240static -
241 _Bool -
242 join_lines = -
243 0-
244 ;-
245-
246-
247-
248static int chars_per_column;-
249-
250-
251static -
252 _Bool -
253 untabify_input = -
254 0-
255 ;-
256-
257-
258static char input_tab_char = '\t';-
259-
260-
261-
262static int chars_per_input_tab = 8;-
263-
264-
265static -
266 _Bool -
267 tabify_output = -
268 0-
269 ;-
270-
271-
272static char output_tab_char = '\t';-
273-
274-
275static int chars_per_output_tab = 8;-
276-
277-
278-
279-
280static int spaces_not_printed;-
281-
282-
283static int chars_per_margin = 0;-
284-
285-
286-
287-
288-
289static int output_position;-
290-
291-
292-
293-
294-
295static int input_position;-
296-
297-
298-
299static -
300 _Bool -
301 failed_opens = -
302 0-
303 ;-
304static int columns = 1;-
305-
306-
307-
308static uintmax_t first_page_number = 0;-
309static uintmax_t last_page_number = -
310 (18446744073709551615UL)-
311 ;-
312-
313-
314static int files_ready_to_read = 0;-
315-
316-
317static uintmax_t page_number;-
318static int line_number;-
319-
320-
321static -
322 _Bool -
323 numbered_lines = -
324 0-
325 ;-
326-
327-
328static char number_separator = '\t';-
329-
330-
331-
332static int line_count = 1;-
333-
334-
335-
336-
337static -
338 _Bool -
339 skip_count = -
340 1-
341 ;-
342-
343-
344-
345static int start_line_num = 1;-
346-
347-
348static int chars_per_number = 5;-
349-
350-
351-
352-
353static int number_width;-
354-
355-
356static char *number_buff;-
357-
358-
359-
360static -
361 _Bool -
362 use_esc_sequence = -
363 0-
364 ;-
365-
366-
367-
368static -
369 _Bool -
370 use_cntrl_prefix = -
371 0-
372 ;-
373-
374-
375static -
376 _Bool -
377 double_space = -
378 0-
379 ;-
380-
381-
382-
383static int total_files = 0;-
384-
385-
386static -
387 _Bool -
388 ignore_failed_opens = -
389 0-
390 ;-
391-
392-
393-
394static -
395 _Bool -
396 use_col_separator = -
397 0-
398 ;-
399-
400-
401-
402-
403static char const *col_sep_string = "";-
404static int col_sep_length = 0;-
405static char *column_separator = (char *) " ";-
406static char *line_separator = (char *) "\t";-
407-
408-
409-
410static int separators_not_printed;-
411-
412-
413-
414static int padding_not_printed;-
415-
416-
417-
418static -
419 _Bool -
420 pad_vertically;-
421-
422-
423static char *custom_header;-
424-
425-
426static char const *date_format;-
427-
428-
429static timezone_t localtz;-
430-
431-
432static char *date_text;-
433static char const *file_text;-
434-
435-
436static int header_width_available;-
437-
438static char *clump_buff;-
439-
440-
441-
442-
443-
444static -
445 _Bool -
446 last_line = -
447 0-
448 ;-
449-
450-
451-
452enum-
453{-
454 COLUMNS_OPTION = 0x7f + 1,-
455 PAGES_OPTION-
456};-
457-
458static char const short_options[] =-
459 "-0123456789D:FJN:S::TW:abcde::fh:i::l:mn::o:rs::tvw:";-
460-
461static struct option const long_options[] =-
462{-
463 {"pages", -
464 1-
465 , -
466 ((void *)0)-
467 , PAGES_OPTION},-
468 {"columns", -
469 1-
470 , -
471 ((void *)0)-
472 , COLUMNS_OPTION},-
473 {"across", -
474 0-
475 , -
476 ((void *)0)-
477 , 'a'},-
478 {"show-control-chars", -
479 0-
480 , -
481 ((void *)0)-
482 , 'c'},-
483 {"double-space", -
484 0-
485 , -
486 ((void *)0)-
487 , 'd'},-
488 {"date-format", -
489 1-
490 , -
491 ((void *)0)-
492 , 'D'},-
493 {"expand-tabs", -
494 2-
495 , -
496 ((void *)0)-
497 , 'e'},-
498 {"form-feed", -
499 0-
500 , -
501 ((void *)0)-
502 , 'f'},-
503 {"header", -
504 1-
505 , -
506 ((void *)0)-
507 , 'h'},-
508 {"output-tabs", -
509 2-
510 , -
511 ((void *)0)-
512 , 'i'},-
513 {"join-lines", -
514 0-
515 , -
516 ((void *)0)-
517 , 'J'},-
518 {"length", -
519 1-
520 , -
521 ((void *)0)-
522 , 'l'},-
523 {"merge", -
524 0-
525 , -
526 ((void *)0)-
527 , 'm'},-
528 {"number-lines", -
529 2-
530 , -
531 ((void *)0)-
532 , 'n'},-
533 {"first-line-number", -
534 1-
535 , -
536 ((void *)0)-
537 , 'N'},-
538 {"indent", -
539 1-
540 , -
541 ((void *)0)-
542 , 'o'},-
543 {"no-file-warnings", -
544 0-
545 , -
546 ((void *)0)-
547 , 'r'},-
548 {"separator", -
549 2-
550 , -
551 ((void *)0)-
552 , 's'},-
553 {"sep-string", -
554 2-
555 , -
556 ((void *)0)-
557 , 'S'},-
558 {"omit-header", -
559 0-
560 , -
561 ((void *)0)-
562 , 't'},-
563 {"omit-pagination", -
564 0-
565 , -
566 ((void *)0)-
567 , 'T'},-
568 {"show-nonprinting", -
569 0-
570 , -
571 ((void *)0)-
572 , 'v'},-
573 {"width", -
574 1-
575 , -
576 ((void *)0)-
577 , 'w'},-
578 {"page-width", -
579 1-
580 , -
581 ((void *)0)-
582 , 'W'},-
583 {"help", -
584 0-
585 , -
586 ((void *)0)-
587 , GETOPT_HELP_CHAR},-
588 {"version", -
589 0-
590 , -
591 ((void *)0)-
592 , GETOPT_VERSION_CHAR},-
593 {-
594 ((void *)0)-
595 , 0, -
596 ((void *)0)-
597 , 0}-
598};-
599-
600static void-
601integer_overflow (void)-
602{-
603 ((!!sizeof (struct { _Static_assert (-
604 1-
605 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"integer overflow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (-
606 1-
607 , 0, -
608 dcgettext (((void *)0), -
609 "integer overflow"-
610 , 5)-
611 ), ((-
612 0-
613 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (-
614 1-
615 , 0, -
616 dcgettext (((void *)0), -
617 "integer overflow"-
618 , 5)-
619 ), ((-
620 0-
621 ) ? (void) 0 : __builtin_unreachable ()))));-
622}
never executed: end of block
0
623-
624-
625-
626-
627static unsigned int __attribute__ ((__pure__))-
628cols_ready_to_print (void)-
629{-
630 COLUMN *q;-
631 unsigned int i;-
632 unsigned int n;-
633-
634 n = 0;-
635 for (q = column_vector, i = 0; i < columns
i < columnsDescription
TRUEevaluated 101299 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 56091 times by 1 test
Evaluated by:
  • pr
; ++q, ++i)
56091-101299
636 if (q->status == OPEN
q->status == OPENDescription
TRUEevaluated 58960 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 42339 times by 1 test
Evaluated by:
  • pr
42339-58960
637 || q->status == FF_FOUND
q->status == FF_FOUNDDescription
TRUEevaluated 4884 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 37455 times by 1 test
Evaluated by:
  • pr
4884-37455
638 || (storing_columns
storing_columnsDescription
TRUEevaluated 22986 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 14469 times by 1 test
Evaluated by:
  • pr
&& q->lines_stored > 0
q->lines_stored > 0Description
TRUEevaluated 18537 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 4449 times by 1 test
Evaluated by:
  • pr
&& q->lines_to_print > 0
q->lines_to_print > 0Description
TRUEevaluated 11292 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 7245 times by 1 test
Evaluated by:
  • pr
))
4449-22986
639 ++
executed 75136 times by 1 test: ++n;
Executed by:
  • pr
n;
executed 75136 times by 1 test: ++n;
Executed by:
  • pr
75136
640 return
executed 56091 times by 1 test: return n;
Executed by:
  • pr
n;
executed 56091 times by 1 test: return n;
Executed by:
  • pr
56091
641}-
642-
643-
644-
645-
646static -
647 _Bool-
648-
649first_last_page (int oi, char c, char const *pages)-
650{-
651 char *p;-
652 uintmax_t first;-
653 uintmax_t last = -
654 (18446744073709551615UL)-
655 ;-
656 strtol_error err = xstrtoumax (pages, &p, 10, &first, "");-
657 if (err != LONGINT_OK
err != LONGINT_OKDescription
TRUEevaluated 28 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 221 times by 1 test
Evaluated by:
  • pr
&& err != LONGINT_INVALID_SUFFIX_CHAR
err != LONGINT...ID_SUFFIX_CHARDescription
TRUEevaluated 3 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 25 times by 1 test
Evaluated by:
  • pr
)
3-221
658 xstrtol_fatal (err, oi, c, long_options, pages);
executed 3 times by 1 test: xstrtol_fatal (err, oi, c, long_options, pages);
Executed by:
  • pr
3
659-
660 if (p == pages
p == pagesDescription
TRUEnever evaluated
FALSEevaluated 246 times by 1 test
Evaluated by:
  • pr
|| !first
!firstDescription
TRUEnever evaluated
FALSEevaluated 246 times by 1 test
Evaluated by:
  • pr
)
0-246
661 return
never executed: return 0 ;
never executed: return 0 ;
0
662 0
never executed: return 0 ;
0
663 ;
never executed: return 0 ;
0
664-
665 if (*
*p == ':'Description
TRUEevaluated 24 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 222 times by 1 test
Evaluated by:
  • pr
p == ':'
*p == ':'Description
TRUEevaluated 24 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 222 times by 1 test
Evaluated by:
  • pr
)
24-222
666 {-
667 char const *p1 = p + 1;-
668 err = xstrtoumax (p1, &p, 10, &last, "");-
669 if (err != LONGINT_OK
err != LONGINT_OKDescription
TRUEevaluated 3 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 21 times by 1 test
Evaluated by:
  • pr
)
3-21
670 xstrtol_fatal (err, oi, c, long_options, pages);
executed 3 times by 1 test: xstrtol_fatal (err, oi, c, long_options, pages);
Executed by:
  • pr
3
671 if (p1 == p
p1 == pDescription
TRUEnever evaluated
FALSEevaluated 21 times by 1 test
Evaluated by:
  • pr
|| last < first
last < firstDescription
TRUEnever evaluated
FALSEevaluated 21 times by 1 test
Evaluated by:
  • pr
)
0-21
672 return
never executed: return 0 ;
never executed: return 0 ;
0
673 0
never executed: return 0 ;
0
674 ;
never executed: return 0 ;
0
675 }
executed 21 times by 1 test: end of block
Executed by:
  • pr
21
676-
677 if (*
*pDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • pr
FALSEevaluated 242 times by 1 test
Evaluated by:
  • pr
p
*pDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • pr
FALSEevaluated 242 times by 1 test
Evaluated by:
  • pr
)
1-242
678 return
executed 1 time by 1 test: return 0 ;
Executed by:
  • pr
executed 1 time by 1 test: return 0 ;
Executed by:
  • pr
1
679 0
executed 1 time by 1 test: return 0 ;
Executed by:
  • pr
1
680 ;
executed 1 time by 1 test: return 0 ;
Executed by:
  • pr
1
681-
682 first_page_number = first;-
683 last_page_number = last;-
684 return
executed 242 times by 1 test: return 1 ;
Executed by:
  • pr
executed 242 times by 1 test: return 1 ;
Executed by:
  • pr
242
685 1
executed 242 times by 1 test: return 1 ;
Executed by:
  • pr
242
686 ;
executed 242 times by 1 test: return 1 ;
Executed by:
  • pr
242
687}-
688-
689-
690-
691-
692-
693static void-
694parse_column_count (char const *s)-
695{-
696 getoptnum (s, 1, &columns, -
697 dcgettext (((void *)0), -
698 "invalid number of columns"-
699 , 5)-
700 );-
701 explicit_columns = -
702 1-
703 ;-
704}
executed 420 times by 1 test: end of block
Executed by:
  • pr
420
705-
706-
707-
708static void-
709separator_string (const char *optarg_S)-
710{-
711 size_t len = strlen (optarg_S);-
712 if (0x7fffffff < len
0x7fffffff < lenDescription
TRUEnever evaluated
FALSEevaluated 45 times by 1 test
Evaluated by:
  • pr
)
0-45
713 integer_overflow ();
never executed: integer_overflow ();
0
714 col_sep_length = len;-
715 col_sep_string = optarg_S;-
716}
executed 45 times by 1 test: end of block
Executed by:
  • pr
45
717-
718int-
719main (int argc, char **argv)-
720{-
721 unsigned int n_files;-
722 -
723 _Bool -
724 old_options = -
725 0-
726 ;-
727 -
728 _Bool -
729 old_w = -
730 0-
731 ;-
732 -
733 _Bool -
734 old_s = -
735 0-
736 ;-
737 char **file_names;-
738-
739-
740 char *column_count_string = -
741 ((void *)0)-
742 ;-
743 size_t n_digits = 0;-
744 size_t n_alloc = 0;-
745-
746 ;-
747 set_program_name (argv[0]);-
748 setlocale (-
749 6-
750 , "");-
751 bindtextdomain ("coreutils", "/usr/local/share/locale");-
752 textdomain ("coreutils");-
753-
754 atexit (close_stdout);-
755-
756 n_files = 0;-
757 file_names = (argc > 1
argc > 1Description
TRUEevaluated 790 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 2 times by 1 test
Evaluated by:
  • pr
2-790
758 ? xnmalloc (argc - 1, sizeof (char *))-
759 : -
760 ((void *)0)-
761 );-
762-
763 while (-
764 1-
765 )-
766 {-
767 int oi = -1;-
768 int c = getopt_long (argc, argv, short_options, long_options, &oi);-
769 if (c == -1
c == -1Description
TRUEevaluated 731 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 4637 times by 1 test
Evaluated by:
  • pr
)
731-4637
770 break;
executed 731 times by 1 test: break;
Executed by:
  • pr
731
771-
772 if (((
((unsigned int...c) - '0' <= 9)Description
TRUEevaluated 726 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 3911 times by 1 test
Evaluated by:
  • pr
unsigned int) (c) - '0' <= 9)
((unsigned int...c) - '0' <= 9)Description
TRUEevaluated 726 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 3911 times by 1 test
Evaluated by:
  • pr
)
726-3911
773 {-
774-
775 if (n_digits + 1 >= n_alloc
n_digits + 1 >= n_allocDescription
TRUEevaluated 426 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 300 times by 1 test
Evaluated by:
  • pr
)
300-426
776 column_count_string
executed 426 times by 1 test: column_count_string = ((void) (!!sizeof (struct { _Static_assert (sizeof *(column_count_string) == 1, "verify_true (" "sizeof *(column_count_string) == 1" ")"); int _gl_dummy; })), x2realloc (column_count_string, &n_alloc));
Executed by:
  • pr
426
777 = ((void) (!!sizeof (struct { _Static_assert (sizeof *(column_count_string) == 1, "verify_true (" "sizeof *(column_count_string) == 1" ")"); int _gl_dummy; })), x2realloc (column_count_string, &n_alloc));
executed 426 times by 1 test: column_count_string = ((void) (!!sizeof (struct { _Static_assert (sizeof *(column_count_string) == 1, "verify_true (" "sizeof *(column_count_string) == 1" ")"); int _gl_dummy; })), x2realloc (column_count_string, &n_alloc));
Executed by:
  • pr
426
778 column_count_string[n_digits++] = c;-
779 column_count_string[n_digits] = '\0';-
780 continue;
executed 726 times by 1 test: continue;
Executed by:
  • pr
726
781 }-
782-
783 n_digits = 0;-
784-
785 switch (c)-
786 {-
787 case
executed 561 times by 1 test: case 1:
Executed by:
  • pr
1:
executed 561 times by 1 test: case 1:
Executed by:
  • pr
561
788-
789 if (! (first_page_number == 0
first_page_number == 0Description
TRUEevaluated 467 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 94 times by 1 test
Evaluated by:
  • pr
94-467
790 && *
*optarg == '+'Description
TRUEevaluated 242 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 225 times by 1 test
Evaluated by:
  • pr
optarg == '+'
*optarg == '+'Description
TRUEevaluated 242 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 225 times by 1 test
Evaluated by:
  • pr
&& first_last_page (-2, '+', optarg + 1)
first_last_pag...', optarg + 1)Description
TRUEevaluated 242 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
))
0-242
791 file_names[n_files++] = optarg;
executed 319 times by 1 test: file_names[n_files++] = optarg;
Executed by:
  • pr
319
792 break;
executed 561 times by 1 test: break;
Executed by:
  • pr
561
793-
794 case
executed 7 times by 1 test: case PAGES_OPTION:
Executed by:
  • pr
PAGES_OPTION:
executed 7 times by 1 test: case PAGES_OPTION:
Executed by:
  • pr
7
795 {-
796 if (! optarg
! optargDescription
TRUEnever evaluated
FALSEevaluated 7 times by 1 test
Evaluated by:
  • pr
)
0-7
797 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 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), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
798 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
799 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
800 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
801 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
802 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
803 "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
804 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
805 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
806 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
807 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
808 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
809 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
810 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
811 "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
812 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
813 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
814 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
815 ) ? (void) 0 : __builtin_unreachable ()))))
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
816 ;
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "'--pages=FIRST_PAGE[:LAST_PAGE]' missing argument" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
817 else if (! first_last_page (oi, 0, optarg)
! first_last_p...oi, 0, optarg)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
)
0-1
818 ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
!!sizeof (struct { _Static_assert (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
819 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
820 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
821 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
822 , 0,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
823 dcgettext (((void *)0),
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
824 "invalid page range %s"
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
825 , 5)
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
826 , quote (optarg)), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
827 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
828 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
829 1
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
830 , 0,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
831 dcgettext (((void *)0),
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
832 "invalid page range %s"
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
833 , 5)
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
834 , quote (optarg)), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
835 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
836 ) ? (void) 0 : __builtin_unreachable ()))))
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
837 ;
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"invalid page range %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "invalid page range %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • pr
1
838 break;
never executed: break;
0
839 }-
840-
841 case
executed 7 times by 1 test: case COLUMNS_OPTION:
Executed by:
  • pr
COLUMNS_OPTION:
executed 7 times by 1 test: case COLUMNS_OPTION:
Executed by:
  • pr
7
842 {-
843 parse_column_count (optarg);-
844-
845-
846-
847-
848 free (column_count_string);-
849 column_count_string = -
850 ((void *)0)-
851 ;-
852 n_alloc = 0;-
853 break;
executed 6 times by 1 test: break;
Executed by:
  • pr
6
854 }-
855-
856 case
executed 161 times by 1 test: case 'a':
Executed by:
  • pr
'a':
executed 161 times by 1 test: case 'a':
Executed by:
  • pr
161
857 print_across_flag = -
858 1-
859 ;-
860 storing_columns = -
861 0-
862 ;-
863 break;
executed 161 times by 1 test: break;
Executed by:
  • pr
161
864 case
executed 186 times by 1 test: case 'b':
Executed by:
  • pr
'b':
executed 186 times by 1 test: case 'b':
Executed by:
  • pr
186
865 balance_columns = -
866 1-
867 ;-
868 break;
executed 186 times by 1 test: break;
Executed by:
  • pr
186
869 case
executed 2 times by 1 test: case 'c':
Executed by:
  • pr
'c':
executed 2 times by 1 test: case 'c':
Executed by:
  • pr
2
870 use_cntrl_prefix = -
871 1-
872 ;-
873 break;
executed 2 times by 1 test: break;
Executed by:
  • pr
2
874 case
executed 8 times by 1 test: case 'd':
Executed by:
  • pr
'd':
executed 8 times by 1 test: case 'd':
Executed by:
  • pr
8
875 double_space = -
876 1-
877 ;-
878 break;
executed 8 times by 1 test: break;
Executed by:
  • pr
8
879 case
executed 732 times by 1 test: case 'D':
Executed by:
  • pr
'D':
executed 732 times by 1 test: case 'D':
Executed by:
  • pr
732
880 date_format = optarg;-
881 break;
executed 732 times by 1 test: break;
Executed by:
  • pr
732
882 case
executed 37 times by 1 test: case 'e':
Executed by:
  • pr
'e':
executed 37 times by 1 test: case 'e':
Executed by:
  • pr
37
883 if (optarg
optargDescription
TRUEevaluated 27 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 10 times by 1 test
Evaluated by:
  • pr
)
10-27
884 getoptarg (optarg, 'e', &input_tab_char,
executed 27 times by 1 test: getoptarg (optarg, 'e', &input_tab_char, &chars_per_input_tab);
Executed by:
  • pr
27
885 &chars_per_input_tab);
executed 27 times by 1 test: getoptarg (optarg, 'e', &input_tab_char, &chars_per_input_tab);
Executed by:
  • pr
27
886-
887 untabify_input = -
888 1-
889 ;-
890 break;
executed 37 times by 1 test: break;
Executed by:
  • pr
37
891 case
executed 334 times by 1 test: case 'f':
Executed by:
  • pr
'f':
executed 334 times by 1 test: case 'f':
Executed by:
  • pr
334
892 case
executed 1 time by 1 test: case 'F':
Executed by:
  • pr
'F':
executed 1 time by 1 test: case 'F':
Executed by:
  • pr
1
893 use_form_feed = -
894 1-
895 ;-
896 break;
executed 335 times by 1 test: break;
Executed by:
  • pr
335
897 case
executed 733 times by 1 test: case 'h':
Executed by:
  • pr
'h':
executed 733 times by 1 test: case 'h':
Executed by:
  • pr
733
898 custom_header = optarg;-
899 break;
executed 733 times by 1 test: break;
Executed by:
  • pr
733
900 case
executed 7 times by 1 test: case 'i':
Executed by:
  • pr
'i':
executed 7 times by 1 test: case 'i':
Executed by:
  • pr
7
901 if (optarg
optargDescription
TRUEevaluated 6 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 1 time by 1 test
Evaluated by:
  • pr
)
1-6
902 getoptarg (optarg, 'i', &output_tab_char,
executed 6 times by 1 test: getoptarg (optarg, 'i', &output_tab_char, &chars_per_output_tab);
Executed by:
  • pr
6
903 &chars_per_output_tab);
executed 6 times by 1 test: getoptarg (optarg, 'i', &output_tab_char, &chars_per_output_tab);
Executed by:
  • pr
6
904-
905 tabify_output = -
906 1-
907 ;-
908 break;
executed 7 times by 1 test: break;
Executed by:
  • pr
7
909 case
executed 32 times by 1 test: case 'J':
Executed by:
  • pr
'J':
executed 32 times by 1 test: case 'J':
Executed by:
  • pr
32
910 join_lines = -
911 1-
912 ;-
913 break;
executed 32 times by 1 test: break;
Executed by:
  • pr
32
914 case
executed 472 times by 1 test: case 'l':
Executed by:
  • pr
'l':
executed 472 times by 1 test: case 'l':
Executed by:
  • pr
472
915 getoptnum (optarg, 1, &lines_per_page,-
916 -
917 dcgettext (((void *)0), -
918 "'-l PAGE_LENGTH' invalid number of lines"-
919 , 5)-
920 );-
921 break;
executed 470 times by 1 test: break;
Executed by:
  • pr
470
922 case
executed 39 times by 1 test: case 'm':
Executed by:
  • pr
'm':
executed 39 times by 1 test: case 'm':
Executed by:
  • pr
39
923 parallel_files = -
924 1-
925 ;-
926 storing_columns = -
927 0-
928 ;-
929 break;
executed 39 times by 1 test: break;
Executed by:
  • pr
39
930 case
executed 193 times by 1 test: case 'n':
Executed by:
  • pr
'n':
executed 193 times by 1 test: case 'n':
Executed by:
  • pr
193
931 numbered_lines = -
932 1-
933 ;-
934 if (optarg
optargDescription
TRUEevaluated 168 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 25 times by 1 test
Evaluated by:
  • pr
)
25-168
935 getoptarg (optarg, 'n', &number_separator,
executed 168 times by 1 test: getoptarg (optarg, 'n', &number_separator, &chars_per_number);
Executed by:
  • pr
168
936 &chars_per_number);
executed 168 times by 1 test: getoptarg (optarg, 'n', &number_separator, &chars_per_number);
Executed by:
  • pr
168
937 break;
executed 193 times by 1 test: break;
Executed by:
  • pr
193
938 case
executed 17 times by 1 test: case 'N':
Executed by:
  • pr
'N':
executed 17 times by 1 test: case 'N':
Executed by:
  • pr
17
939 skip_count = -
940 0-
941 ;-
942 getoptnum (optarg, -
943 (-0x7fffffff - 1)-
944 , &start_line_num,-
945 -
946 dcgettext (((void *)0), -
947 "'-N NUMBER' invalid starting line number"-
948 , 5)-
949 );-
950 break;
executed 15 times by 1 test: break;
Executed by:
  • pr
15
951 case
executed 39 times by 1 test: case 'o':
Executed by:
  • pr
'o':
executed 39 times by 1 test: case 'o':
Executed by:
  • pr
39
952 getoptnum (optarg, 0, &chars_per_margin,-
953 -
954 dcgettext (((void *)0), -
955 "'-o MARGIN' invalid line offset"-
956 , 5)-
957 );-
958 break;
executed 37 times by 1 test: break;
Executed by:
  • pr
37
959 case
executed 2 times by 1 test: case 'r':
Executed by:
  • pr
'r':
executed 2 times by 1 test: case 'r':
Executed by:
  • pr
2
960 ignore_failed_opens = -
961 1-
962 ;-
963 break;
executed 2 times by 1 test: break;
Executed by:
  • pr
2
964 case
executed 17 times by 1 test: case 's':
Executed by:
  • pr
's':
executed 17 times by 1 test: case 's':
Executed by:
  • pr
17
965 old_options = -
966 1-
967 ;-
968 old_s = -
969 1-
970 ;-
971 if (!use_col_separator
!use_col_separatorDescription
TRUEevaluated 17 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
&& optarg
optargDescription
TRUEevaluated 9 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 8 times by 1 test
Evaluated by:
  • pr
)
0-17
972 separator_string (optarg);
executed 9 times by 1 test: separator_string (optarg);
Executed by:
  • pr
9
973 break;
executed 17 times by 1 test: break;
Executed by:
  • pr
17
974 case
executed 43 times by 1 test: case 'S':
Executed by:
  • pr
'S':
executed 43 times by 1 test: case 'S':
Executed by:
  • pr
43
975 old_s = -
976 0-
977 ;-
978-
979 col_sep_string = "";-
980 col_sep_length = 0;-
981 use_col_separator = -
982 1-
983 ;-
984 if (optarg
optargDescription
TRUEevaluated 36 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 7 times by 1 test
Evaluated by:
  • pr
)
7-36
985 separator_string (optarg);
executed 36 times by 1 test: separator_string (optarg);
Executed by:
  • pr
36
986 break;
executed 43 times by 1 test: break;
Executed by:
  • pr
43
987 case
executed 118 times by 1 test: case 't':
Executed by:
  • pr
't':
executed 118 times by 1 test: case 't':
Executed by:
  • pr
118
988 extremities = -
989 0-
990 ;-
991 keep_FF = -
992 1-
993 ;-
994 break;
executed 118 times by 1 test: break;
Executed by:
  • pr
118
995 case
executed 41 times by 1 test: case 'T':
Executed by:
  • pr
'T':
executed 41 times by 1 test: case 'T':
Executed by:
  • pr
41
996 extremities = -
997 0-
998 ;-
999 keep_FF = -
1000 0-
1001 ;-
1002 break;
executed 41 times by 1 test: break;
Executed by:
  • pr
41
1003 case
executed 2 times by 1 test: case 'v':
Executed by:
  • pr
'v':
executed 2 times by 1 test: case 'v':
Executed by:
  • pr
2
1004 use_esc_sequence = -
1005 1-
1006 ;-
1007 break;
executed 2 times by 1 test: break;
Executed by:
  • pr
2
1008 case
executed 19 times by 1 test: case 'w':
Executed by:
  • pr
'w':
executed 19 times by 1 test: case 'w':
Executed by:
  • pr
19
1009 old_options = -
1010 1-
1011 ;-
1012 old_w = -
1013 1-
1014 ;-
1015 {-
1016 int tmp_cpl;-
1017 getoptnum (optarg, 1, &tmp_cpl,-
1018 -
1019 dcgettext (((void *)0), -
1020 "'-w PAGE_WIDTH' invalid number of characters"-
1021 , 5)-
1022 );-
1023 if (! truncate_lines
! truncate_linesDescription
TRUEevaluated 17 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
)
0-17
1024 chars_per_line = tmp_cpl;
executed 17 times by 1 test: chars_per_line = tmp_cpl;
Executed by:
  • pr
17
1025 }-
1026 break;
executed 17 times by 1 test: break;
Executed by:
  • pr
17
1027 case
executed 58 times by 1 test: case 'W':
Executed by:
  • pr
'W':
executed 58 times by 1 test: case 'W':
Executed by:
  • pr
58
1028 old_w = -
1029 0-
1030 ;-
1031 truncate_lines = -
1032 1-
1033 ;-
1034 getoptnum (optarg, 1, &chars_per_line,-
1035 -
1036 dcgettext (((void *)0), -
1037 "'-W PAGE_WIDTH' invalid number of characters"-
1038 , 5)-
1039 );-
1040 break;
executed 56 times by 1 test: break;
Executed by:
  • pr
56
1041 case
executed 33 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • pr
GETOPT_HELP_CHAR:
executed 33 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • pr
usage (
33
1042 0-
1043 ); break;
never executed: break;
;
0
1044 case
executed 6 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • pr
GETOPT_VERSION_CHAR:
executed 6 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • pr
version_etc (
6
1045 stdout-
1046 , "pr", "GNU coreutils", Version, ("Pete TerMaat"), ("Roland Huebner"), (char *) -
1047 ((void *)0)-
1048 ); exit (
executed 6 times by 1 test: exit ( 0 );
Executed by:
  • pr
6
1049 0
executed 6 times by 1 test: exit ( 0 );
Executed by:
  • pr
6
1050 );
executed 6 times by 1 test: exit ( 0 );
Executed by:
  • pr
break;
never executed: break;
;
0-6
1051 default
executed 4 times by 1 test: default:
Executed by:
  • pr
:
executed 4 times by 1 test: default:
Executed by:
  • pr
4
1052 usage (-
1053 1-
1054 );-
1055 break;
never executed: break;
0
1056 }-
1057 }-
1058-
1059 if (column_count_string
column_count_stringDescription
TRUEevaluated 420 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 311 times by 1 test
Evaluated by:
  • pr
)
311-420
1060 {-
1061 parse_column_count (column_count_string);-
1062 free (column_count_string);-
1063 }
executed 414 times by 1 test: end of block
Executed by:
  • pr
414
1064-
1065 if (! date_format
! date_formatDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 721 times by 1 test
Evaluated by:
  • pr
)
4-721
1066 date_format = (getenv ("POSIXLY_CORRECT")
getenv ("POSIXLY_CORRECT")Description
TRUEnever evaluated
FALSEevaluated 4 times by 1 test
Evaluated by:
  • pr
&& !hard_locale (
!hard_locale ( 2 )Description
TRUEnever evaluated
FALSEnever evaluated
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M");
Executed by:
  • pr
0-4
1067 2
!hard_locale ( 2 )Description
TRUEnever evaluated
FALSEnever evaluated
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M");
Executed by:
  • pr
0-4
1068 )
!hard_locale ( 2 )Description
TRUEnever evaluated
FALSEnever evaluated
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M");
Executed by:
  • pr
0-4
1069 ? "%b %e %H:%M %Y"
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M");
Executed by:
  • pr
4
1070 : "%Y-%m-%d %H:%M");
executed 4 times by 1 test: date_format = (getenv ("POSIXLY_CORRECT") && !hard_locale ( 2 ) ? "%b %e %H:%M %Y" : "%Y-%m-%d %H:%M");
Executed by:
  • pr
4
1071-
1072 localtz = tzalloc (getenv ("TZ"));-
1073-
1074-
1075 if (first_page_number == 0
first_page_number == 0Description
TRUEevaluated 483 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 242 times by 1 test
Evaluated by:
  • pr
)
242-483
1076 first_page_number = 1;
executed 483 times by 1 test: first_page_number = 1;
Executed by:
  • pr
483
1077-
1078 if (parallel_files
parallel_filesDescription
TRUEevaluated 37 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 688 times by 1 test
Evaluated by:
  • pr
&& explicit_columns
explicit_columnsDescription
TRUEnever evaluated
FALSEevaluated 37 times by 1 test
Evaluated by:
  • pr
)
0-688
1079 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 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), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1080 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1081 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1082 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1083 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1084 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1085 "cannot specify number of columns when printing in parallel"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1086 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1087 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1088 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1089 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1090 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1091 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1092 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1093 "cannot specify number of columns when printing in parallel"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1094 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1095 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1096 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1097 ) ? (void) 0 : __builtin_unreachable ()))))
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1098 ;
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify number of columns when printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *...f columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify number of columns when printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1099-
1100 if (parallel_files
parallel_filesDescription
TRUEevaluated 37 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 688 times by 1 test
Evaluated by:
  • pr
&& print_across_flag
print_across_flagDescription
TRUEnever evaluated
FALSEevaluated 37 times by 1 test
Evaluated by:
  • pr
)
0-688
1101 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 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), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1102 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1103 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1104 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1105 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1106 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1107 "cannot specify both printing across and printing in parallel"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1108 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1109 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1110 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1111 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1112 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1113 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1114 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1115 "cannot specify both printing across and printing in parallel"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1116 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1117 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1118 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1119 ) ? (void) 0 : __builtin_unreachable ()))))
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1120 ;
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"cannot specify both printing across and printing in parallel\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void...g across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "cannot specify both printing across and printing in parallel" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
0
1121-
1122-
1123-
1124-
1125-
1126 if (old_options
old_optionsDescription
TRUEevaluated 27 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 698 times by 1 test
Evaluated by:
  • pr
)
27-698
1127 {-
1128 if (old_w
old_wDescription
TRUEevaluated 17 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 10 times by 1 test
Evaluated by:
  • pr
)
10-17
1129 {-
1130 if (parallel_files
parallel_filesDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 15 times by 1 test
Evaluated by:
  • pr
|| explicit_columns
explicit_columnsDescription
TRUEevaluated 9 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 6 times by 1 test
Evaluated by:
  • pr
)
2-15
1131 {-
1132-
1133 truncate_lines = -
1134 1-
1135 ;-
1136 if (old_s
old_sDescription
TRUEevaluated 6 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 5 times by 1 test
Evaluated by:
  • pr
)
5-6
1137-
1138-
1139 use_col_separator =
executed 6 times by 1 test: use_col_separator = 1 ;
Executed by:
  • pr
6
1140 1
executed 6 times by 1 test: use_col_separator = 1 ;
Executed by:
  • pr
6
1141 ;
executed 6 times by 1 test: use_col_separator = 1 ;
Executed by:
  • pr
6
1142 }
executed 11 times by 1 test: end of block
Executed by:
  • pr
11
1143 else-
1144-
1145-
1146 join_lines =
executed 6 times by 1 test: join_lines = 1 ;
Executed by:
  • pr
6
1147 1
executed 6 times by 1 test: join_lines = 1 ;
Executed by:
  • pr
6
1148 ;
executed 6 times by 1 test: join_lines = 1 ;
Executed by:
  • pr
6
1149 }-
1150 else if (!use_col_separator
!use_col_separatorDescription
TRUEevaluated 10 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
)
0-10
1151 {-
1152-
1153 if (old_s
old_sDescription
TRUEevaluated 10 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
&& (parallel_files
parallel_filesDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • pr
FALSEevaluated 9 times by 1 test
Evaluated by:
  • pr
|| explicit_columns
explicit_columnsDescription
TRUEevaluated 9 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
))
0-10
1154 {-
1155 if (!truncate_lines
!truncate_linesDescription
TRUEevaluated 10 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
)
0-10
1156 {-
1157-
1158-
1159 join_lines = -
1160 1-
1161 ;-
1162 if (col_sep_length > 0
col_sep_length > 0Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 4 times by 1 test
Evaluated by:
  • pr
)
4-6
1163-
1164 use_col_separator =
executed 6 times by 1 test: use_col_separator = 1 ;
Executed by:
  • pr
6
1165 1
executed 6 times by 1 test: use_col_separator = 1 ;
Executed by:
  • pr
6
1166 ;
executed 6 times by 1 test: use_col_separator = 1 ;
Executed by:
  • pr
6
1167 }
executed 10 times by 1 test: end of block
Executed by:
  • pr
10
1168 else-
1169-
1170-
1171-
1172 use_col_separator =
never executed: use_col_separator = 1 ;
0
1173 1
never executed: use_col_separator = 1 ;
0
1174 ;
never executed: use_col_separator = 1 ;
0
1175 }-
1176 }
executed 10 times by 1 test: end of block
Executed by:
  • pr
10
1177 }
executed 27 times by 1 test: end of block
Executed by:
  • pr
27
1178-
1179 for (; optind < argc
optind < argcDescription
TRUEnever evaluated
FALSEevaluated 725 times by 1 test
Evaluated by:
  • pr
; optind++)
0-725
1180 {-
1181 file_names[n_files++] = argv[optind];-
1182 }
never executed: end of block
0
1183-
1184 if (n_files == 0
n_files == 0Description
TRUEevaluated 454 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 271 times by 1 test
Evaluated by:
  • pr
)
271-454
1185 {-
1186-
1187 print_files (0, -
1188 ((void *)0)-
1189 );-
1190 }
executed 454 times by 1 test: end of block
Executed by:
  • pr
454
1191 else-
1192 {-
1193 if (parallel_files
parallel_filesDescription
TRUEevaluated 37 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 234 times by 1 test
Evaluated by:
  • pr
)
37-234
1194 print_files (n_files, file_names);
executed 37 times by 1 test: print_files (n_files, file_names);
Executed by:
  • pr
37
1195 else-
1196 {-
1197 for (unsigned int i = 0; i < n_files
i < n_filesDescription
TRUEevaluated 234 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 234 times by 1 test
Evaluated by:
  • pr
; i++)
234
1198 print_files (1, &file_names[i]);
executed 234 times by 1 test: print_files (1, &file_names[i]);
Executed by:
  • pr
234
1199 }
executed 234 times by 1 test: end of block
Executed by:
  • pr
234
1200 }-
1201-
1202 cleanup ();-
1203 ;-
1204-
1205 if (have_read_stdin
have_read_stdinDescription
TRUEevaluated 454 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 271 times by 1 test
Evaluated by:
  • pr
&&
271-454
1206 rpl_fclose
rpl_fclose ( stdin ) == (-1)Description
TRUEnever evaluated
FALSEevaluated 454 times by 1 test
Evaluated by:
  • pr
0-454
1207 (
rpl_fclose ( stdin ) == (-1)Description
TRUEnever evaluated
FALSEevaluated 454 times by 1 test
Evaluated by:
  • pr
0-454
1208 stdin
rpl_fclose ( stdin ) == (-1)Description
TRUEnever evaluated
FALSEevaluated 454 times by 1 test
Evaluated by:
  • pr
0-454
1209 ) ==
rpl_fclose ( stdin ) == (-1)Description
TRUEnever evaluated
FALSEevaluated 454 times by 1 test
Evaluated by:
  • pr
0-454
1210 (-1)
rpl_fclose ( stdin ) == (-1)Description
TRUEnever evaluated
FALSEevaluated 454 times by 1 test
Evaluated by:
  • pr
0-454
1211 )-
1212 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 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), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1213 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1214 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1215 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1216 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1217 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1218 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1219 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1220 "standard input"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1221 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1222 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1223 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1224 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1225 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1226 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1227 (*__errno_location ())
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1228 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1229 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1230 "standard input"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1231 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1232 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1233 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1234 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), dcgettext (((void *)0), \"standard input\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , dcgettext (((void *)0), "standard input" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1235 return
executed 725 times by 1 test: return failed_opens ? 1 : 0 ;
Executed by:
  • pr
failed_opens ?
executed 725 times by 1 test: return failed_opens ? 1 : 0 ;
Executed by:
  • pr
725
1236 1
executed 725 times by 1 test: return failed_opens ? 1 : 0 ;
Executed by:
  • pr
725
1237 :
executed 725 times by 1 test: return failed_opens ? 1 : 0 ;
Executed by:
  • pr
725
1238 0
executed 725 times by 1 test: return failed_opens ? 1 : 0 ;
Executed by:
  • pr
725
1239 ;
executed 725 times by 1 test: return failed_opens ? 1 : 0 ;
Executed by:
  • pr
725
1240}-
1241-
1242-
1243-
1244static void-
1245getoptnum (const char *n_str, int min, int *num, const char *err)-
1246{-
1247 intmax_t tnum = xdectoimax (n_str, min, 0x7fffffff, "", err, 0);-
1248 *num = tnum;-
1249}
executed 1015 times by 1 test: end of block
Executed by:
  • pr
1015
1250-
1251-
1252-
1253-
1254-
1255-
1256-
1257static void-
1258getoptarg (char *arg, char switch_char, char *character, int *number)-
1259{-
1260 if (!((unsigned int) (*arg) - '0' <= 9)
!((unsigned in...g) - '0' <= 9)Description
TRUEevaluated 168 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 33 times by 1 test
Evaluated by:
  • pr
)
33-168
1261 *
executed 168 times by 1 test: *character = *arg++;
Executed by:
  • pr
character = *arg++;
executed 168 times by 1 test: *character = *arg++;
Executed by:
  • pr
168
1262 if (*
*argDescription
TRUEevaluated 188 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 13 times by 1 test
Evaluated by:
  • pr
arg
*argDescription
TRUEevaluated 188 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 13 times by 1 test
Evaluated by:
  • pr
)
13-188
1263 {-
1264 long int tmp_long;-
1265 if (xstrtol (arg,
xstrtol (arg, ... != LONGINT_OKDescription
TRUEnever evaluated
FALSEevaluated 188 times by 1 test
Evaluated by:
  • pr
0-188
1266 ((void *)0)
xstrtol (arg, ... != LONGINT_OKDescription
TRUEnever evaluated
FALSEevaluated 188 times by 1 test
Evaluated by:
  • pr
0-188
1267 , 10, &tmp_long, "") != LONGINT_OK
xstrtol (arg, ... != LONGINT_OKDescription
TRUEnever evaluated
FALSEevaluated 188 times by 1 test
Evaluated by:
  • pr
0-188
1268 || tmp_long <= 0
tmp_long <= 0Description
TRUEnever evaluated
FALSEevaluated 188 times by 1 test
Evaluated by:
  • pr
|| 0x7fffffff < tmp_long
0x7fffffff < tmp_longDescription
TRUEnever evaluated
FALSEevaluated 188 times by 1 test
Evaluated by:
  • pr
)
0-188
1269 {-
1270 error (0, 0x7fffffff < tmp_long ? -
1271 75 -
1272 : -
1273 (*__errno_location ())-
1274 ,-
1275 -
1276 dcgettext (((void *)0), -
1277 "'-%c' extra characters or invalid number in the argument: %s"-
1278 , 5)-
1279 ,-
1280 switch_char, quote (arg));-
1281 usage (-
1282 1-
1283 );-
1284 }
never executed: end of block
0
1285 *number = tmp_long;-
1286 }
executed 188 times by 1 test: end of block
Executed by:
  • pr
188
1287}
executed 201 times by 1 test: end of block
Executed by:
  • pr
201
1288-
1289-
1290-
1291static void-
1292init_parameters (int number_of_files)-
1293{-
1294 int chars_used_by_number = 0;-
1295-
1296 lines_per_body = lines_per_page - lines_per_header - lines_per_footer;-
1297 if (lines_per_body <= 0
lines_per_body <= 0Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 722 times by 1 test
Evaluated by:
  • pr
)
3-722
1298 {-
1299 extremities = -
1300 0-
1301 ;-
1302 keep_FF = -
1303 1-
1304 ;-
1305 }
executed 3 times by 1 test: end of block
Executed by:
  • pr
3
1306 if (extremities ==
extremities == 0Description
TRUEevaluated 158 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 567 times by 1 test
Evaluated by:
  • pr
158-567
1307 0
extremities == 0Description
TRUEevaluated 158 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 567 times by 1 test
Evaluated by:
  • pr
158-567
1308 )-
1309 lines_per_body = lines_per_page;
executed 158 times by 1 test: lines_per_body = lines_per_page;
Executed by:
  • pr
158
1310-
1311 if (double_space
double_spaceDescription
TRUEevaluated 6 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 719 times by 1 test
Evaluated by:
  • pr
)
6-719
1312 lines_per_body = lines_per_body / 2;
executed 6 times by 1 test: lines_per_body = lines_per_body / 2;
Executed by:
  • pr
6
1313-
1314-
1315-
1316 if (number_of_files == 0
number_of_files == 0Description
TRUEevaluated 454 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 271 times by 1 test
Evaluated by:
  • pr
)
271-454
1317 parallel_files =
executed 454 times by 1 test: parallel_files = 0 ;
Executed by:
  • pr
454
1318 0
executed 454 times by 1 test: parallel_files = 0 ;
Executed by:
  • pr
454
1319 ;
executed 454 times by 1 test: parallel_files = 0 ;
Executed by:
  • pr
454
1320-
1321 if (parallel_files
parallel_filesDescription
TRUEevaluated 37 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 688 times by 1 test
Evaluated by:
  • pr
)
37-688
1322 columns = number_of_files;
executed 37 times by 1 test: columns = number_of_files;
Executed by:
  • pr
37
1323-
1324-
1325-
1326 if (storing_columns
storing_columnsDescription
TRUEevaluated 529 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 196 times by 1 test
Evaluated by:
  • pr
)
196-529
1327 balance_columns =
executed 529 times by 1 test: balance_columns = 1 ;
Executed by:
  • pr
529
1328 1
executed 529 times by 1 test: balance_columns = 1 ;
Executed by:
  • pr
529
1329 ;
executed 529 times by 1 test: balance_columns = 1 ;
Executed by:
  • pr
529
1330-
1331-
1332 if (columns > 1
columns > 1Description
TRUEevaluated 454 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 271 times by 1 test
Evaluated by:
  • pr
)
271-454
1333 {-
1334 if (!use_col_separator
!use_col_separatorDescription
TRUEevaluated 400 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 54 times by 1 test
Evaluated by:
  • pr
)
54-400
1335 {-
1336-
1337 if (join_lines
join_linesDescription
TRUEevaluated 22 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 378 times by 1 test
Evaluated by:
  • pr
)
22-378
1338 col_sep_string = line_separator;
executed 22 times by 1 test: col_sep_string = line_separator;
Executed by:
  • pr
22
1339 else-
1340 col_sep_string = column_separator;
executed 378 times by 1 test: col_sep_string = column_separator;
Executed by:
  • pr
378
1341-
1342 col_sep_length = 1;-
1343 use_col_separator = -
1344 1-
1345 ;-
1346 }
executed 400 times by 1 test: end of block
Executed by:
  • pr
400
1347-
1348-
1349 else if (!join_lines
!join_linesDescription
TRUEevaluated 42 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 12 times by 1 test
Evaluated by:
  • pr
&& col_sep_length == 1
col_sep_length == 1Description
TRUEevaluated 9 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 33 times by 1 test
Evaluated by:
  • pr
&& *
*col_sep_string == '\t'Description
TRUEnever evaluated
FALSEevaluated 9 times by 1 test
Evaluated by:
  • pr
col_sep_string == '\t'
*col_sep_string == '\t'Description
TRUEnever evaluated
FALSEevaluated 9 times by 1 test
Evaluated by:
  • pr
)
0-42
1350 col_sep_string = column_separator;
never executed: col_sep_string = column_separator;
0
1351-
1352 truncate_lines = -
1353 1-
1354 ;-
1355 tabify_output = -
1356 1-
1357 ;-
1358 }
executed 454 times by 1 test: end of block
Executed by:
  • pr
454
1359 else-
1360 storing_columns =
executed 271 times by 1 test: storing_columns = 0 ;
Executed by:
  • pr
271
1361 0
executed 271 times by 1 test: storing_columns = 0 ;
Executed by:
  • pr
271
1362 ;
executed 271 times by 1 test: storing_columns = 0 ;
Executed by:
  • pr
271
1363-
1364-
1365 if (join_lines
join_linesDescription
TRUEevaluated 43 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 682 times by 1 test
Evaluated by:
  • pr
)
43-682
1366 truncate_lines =
executed 43 times by 1 test: truncate_lines = 0 ;
Executed by:
  • pr
43
1367 0
executed 43 times by 1 test: truncate_lines = 0 ;
Executed by:
  • pr
43
1368 ;
executed 43 times by 1 test: truncate_lines = 0 ;
Executed by:
  • pr
43
1369-
1370 if (numbered_lines
numbered_linesDescription
TRUEevaluated 192 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 533 times by 1 test
Evaluated by:
  • pr
)
192-533
1371 {-
1372 int chars_per_default_tab = 8;-
1373-
1374 line_count = start_line_num;-
1375-
1376-
1377-
1378-
1379-
1380-
1381-
1382 if (number_separator == '\t'
number_separator == '\t'Description
TRUEevaluated 27 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 165 times by 1 test
Evaluated by:
  • pr
)
27-165
1383 number_width = (chars_per_number
executed 27 times by 1 test: number_width = (chars_per_number + ((chars_per_default_tab) - ((chars_per_number) % (chars_per_default_tab))));
Executed by:
  • pr
27
1384 + ((chars_per_default_tab) - ((chars_per_number) % (chars_per_default_tab))));
executed 27 times by 1 test: number_width = (chars_per_number + ((chars_per_default_tab) - ((chars_per_number) % (chars_per_default_tab))));
Executed by:
  • pr
27
1385 else-
1386 number_width = chars_per_number + 1;
executed 165 times by 1 test: number_width = chars_per_number + 1;
Executed by:
  • pr
165
1387-
1388-
1389-
1390 if (parallel_files
parallel_filesDescription
TRUEevaluated 12 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 180 times by 1 test
Evaluated by:
  • pr
)
12-180
1391 chars_used_by_number = number_width;
executed 12 times by 1 test: chars_used_by_number = number_width;
Executed by:
  • pr
12
1392 }
executed 192 times by 1 test: end of block
Executed by:
  • pr
192
1393-
1394 int sep_chars, useful_chars;-
1395 if (__builtin_mul_overflow (columns - 1, col_sep_length, &sep_chars)
__builtin_mul_...h, &sep_chars)Description
TRUEnever evaluated
FALSEevaluated 725 times by 1 test
Evaluated by:
  • pr
)
0-725
1396 sep_chars = 0x7fffffff;
never executed: sep_chars = 0x7fffffff;
0
1397 if (__builtin_sub_overflow (chars_per_line - chars_used_by_number, sep_chars, &useful_chars)
__builtin_sub_...&useful_chars)Description
TRUEnever evaluated
FALSEevaluated 725 times by 1 test
Evaluated by:
  • pr
0-725
1398 )-
1399 useful_chars = 0;
never executed: useful_chars = 0;
0
1400 chars_per_column = useful_chars / columns;-
1401-
1402 if (chars_per_column < 1
chars_per_column < 1Description
TRUEnever evaluated
FALSEevaluated 725 times by 1 test
Evaluated by:
  • pr
)
0-725
1403 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 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), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1404 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1405 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1406 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1407 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1408 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1409 "page width too narrow"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1410 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1411 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1412 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1413 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1414 1
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1415 , 0,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1416 dcgettext (((void *)0),
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1417 "page width too narrow"
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1418 , 5)
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1419 ), ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1420 0
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1421 ) ? (void) 0 : __builtin_unreachable ()))));
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, 0, dcgettext (((void *)0), \"page width too narrow\", 5)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , 0, dcgettext (((void *)0), "page width too narrow" , 5) ), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1422-
1423 if (numbered_lines
numbered_linesDescription
TRUEevaluated 192 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 533 times by 1 test
Evaluated by:
  • pr
)
192-533
1424 {-
1425 free (number_buff);-
1426 number_buff = xmalloc (-
1427 (((-
1428 chars_per_number-
1429 )>(-
1430 (((((sizeof (line_number) * 8) - (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1)))-
1431 ))?(-
1432 chars_per_number-
1433 ):(-
1434 (((((sizeof (line_number) * 8) - (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1))) * 146 + 484) / 485) + (! ((__typeof__ (line_number)) 0 < (__typeof__ (line_number)) -1)))-
1435 ))-
1436 -
1437 + 1);-
1438 }
executed 192 times by 1 test: end of block
Executed by:
  • pr
192
1439-
1440-
1441-
1442-
1443-
1444-
1445 free (clump_buff);-
1446 clump_buff = xmalloc (-
1447 (((-
1448 8-
1449 )>(-
1450 chars_per_input_tab-
1451 ))?(-
1452 8-
1453 ):(-
1454 chars_per_input_tab-
1455 ))-
1456 );-
1457}
executed 725 times by 1 test: end of block
Executed by:
  • pr
725
1458static -
1459 _Bool-
1460-
1461init_fps (int number_of_files, char **av)-
1462{-
1463 COLUMN *p;-
1464-
1465 total_files = 0;-
1466-
1467 free (column_vector);-
1468 column_vector = xnmalloc (columns, sizeof (COLUMN));-
1469-
1470 if (parallel_files
parallel_filesDescription
TRUEevaluated 37 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 688 times by 1 test
Evaluated by:
  • pr
)
37-688
1471 {-
1472 int files_left = number_of_files;-
1473 for (p = column_vector; files_left--
files_left--Description
TRUEevaluated 83 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 37 times by 1 test
Evaluated by:
  • pr
; ++p, ++av)
37-83
1474 {-
1475 if (! open_file (*av, p)
! open_file (*av, p)Description
TRUEnever evaluated
FALSEevaluated 83 times by 1 test
Evaluated by:
  • pr
)
0-83
1476 {-
1477 --p;-
1478 --columns;-
1479 }
never executed: end of block
0
1480 }
executed 83 times by 1 test: end of block
Executed by:
  • pr
83
1481 if (columns == 0
columns == 0Description
TRUEnever evaluated
FALSEevaluated 37 times by 1 test
Evaluated by:
  • pr
)
0-37
1482 return
never executed: return 0 ;
never executed: return 0 ;
0
1483 0
never executed: return 0 ;
0
1484 ;
never executed: return 0 ;
0
1485 init_header ("", -1);-
1486 }
executed 37 times by 1 test: end of block
Executed by:
  • pr
37
1487 else-
1488 {-
1489 p = column_vector;-
1490 if (number_of_files > 0
number_of_files > 0Description
TRUEevaluated 234 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 454 times by 1 test
Evaluated by:
  • pr
)
234-454
1491 {-
1492 if (! open_file (*av, p)
! open_file (*av, p)Description
TRUEnever evaluated
FALSEevaluated 234 times by 1 test
Evaluated by:
  • pr
)
0-234
1493 return
never executed: return 0 ;
never executed: return 0 ;
0
1494 0
never executed: return 0 ;
0
1495 ;
never executed: return 0 ;
0
1496 init_header (*av, fileno (p->fp));-
1497 p->lines_stored = 0;-
1498 }
executed 234 times by 1 test: end of block
Executed by:
  • pr
234
1499 else-
1500 {-
1501 p->name = -
1502 dcgettext (((void *)0), -
1503 "standard input"-
1504 , 5)-
1505 ;-
1506 p->fp = -
1507 stdin-
1508 ;-
1509 have_read_stdin = -
1510 1-
1511 ;-
1512 p->status = OPEN;-
1513 p->full_page_printed = -
1514 0-
1515 ;-
1516 ++total_files;-
1517 init_header ("", -1);-
1518 p->lines_stored = 0;-
1519 }
executed 454 times by 1 test: end of block
Executed by:
  • pr
454
1520-
1521 char const *firstname = p->name;-
1522 FILE *firstfp = p->fp;-
1523 int i;-
1524 for (i = columns - 1, ++p; i
iDescription
TRUEevaluated 627 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 688 times by 1 test
Evaluated by:
  • pr
; --i, ++p)
627-688
1525 {-
1526 p->name = firstname;-
1527 p->fp = firstfp;-
1528 p->status = OPEN;-
1529 p->full_page_printed = -
1530 0-
1531 ;-
1532 p->lines_stored = 0;-
1533 }
executed 627 times by 1 test: end of block
Executed by:
  • pr
627
1534 }
executed 688 times by 1 test: end of block
Executed by:
  • pr
688
1535 files_ready_to_read = total_files;-
1536 return
executed 725 times by 1 test: return 1 ;
Executed by:
  • pr
executed 725 times by 1 test: return 1 ;
Executed by:
  • pr
725
1537 1
executed 725 times by 1 test: return 1 ;
Executed by:
  • pr
725
1538 ;
executed 725 times by 1 test: return 1 ;
Executed by:
  • pr
725
1539}-
1540-
1541-
1542-
1543-
1544-
1545-
1546-
1547static void-
1548init_funcs (void)-
1549{-
1550 int i, h, h_next;-
1551 COLUMN *p;-
1552-
1553 h = chars_per_margin;-
1554-
1555 if (!truncate_lines
!truncate_linesDescription
TRUEevaluated 287 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 438 times by 1 test
Evaluated by:
  • pr
)
287-438
1556 h_next = 0;
executed 287 times by 1 test: h_next = 0;
Executed by:
  • pr
287
1557 else-
1558 {-
1559-
1560-
1561-
1562 if (parallel_files
parallel_filesDescription
TRUEevaluated 30 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 408 times by 1 test
Evaluated by:
  • pr
&& numbered_lines
numbered_linesDescription
TRUEevaluated 10 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 20 times by 1 test
Evaluated by:
  • pr
)
10-408
1563 h_next = h + chars_per_column + number_width;
executed 10 times by 1 test: h_next = h + chars_per_column + number_width;
Executed by:
  • pr
10
1564 else-
1565 h_next = h + chars_per_column;
executed 428 times by 1 test: h_next = h + chars_per_column;
Executed by:
  • pr
428
1566 }-
1567-
1568-
1569-
1570 h = h + col_sep_length;-
1571-
1572-
1573-
1574 for (p = column_vector, i = 1; i < columns
i < columnsDescription
TRUEevaluated 673 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 725 times by 1 test
Evaluated by:
  • pr
; ++p, ++i)
673-725
1575 {-
1576 if (storing_columns
storing_columnsDescription
TRUEevaluated 381 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 292 times by 1 test
Evaluated by:
  • pr
)
292-381
1577 {-
1578 p->char_func = store_char;-
1579 p->print_func = print_stored;-
1580 }
executed 381 times by 1 test: end of block
Executed by:
  • pr
381
1581 else-
1582-
1583 {-
1584 p->char_func = print_char;-
1585 p->print_func = read_line;-
1586 }
executed 292 times by 1 test: end of block
Executed by:
  • pr
292
1587-
1588-
1589-
1590 p->numbered = numbered_lines
numbered_linesDescription
TRUEevaluated 149 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 524 times by 1 test
Evaluated by:
  • pr
&& (!parallel_files
!parallel_filesDescription
TRUEevaluated 129 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 20 times by 1 test
Evaluated by:
  • pr
|| i == 1
i == 1Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 8 times by 1 test
Evaluated by:
  • pr
);
8-524
1591 p->start_position = h;-
1592-
1593-
1594-
1595-
1596-
1597 if (!truncate_lines
!truncate_linesDescription
TRUEevaluated 49 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 624 times by 1 test
Evaluated by:
  • pr
)
49-624
1598 {-
1599 h = 0;-
1600 h_next = 0;-
1601 }
executed 49 times by 1 test: end of block
Executed by:
  • pr
49
1602 else-
1603 {-
1604 h = h_next + col_sep_length;-
1605 h_next = h + chars_per_column;-
1606 }
executed 624 times by 1 test: end of block
Executed by:
  • pr
624
1607 }-
1608-
1609-
1610-
1611-
1612-
1613 if (storing_columns
storing_columnsDescription
TRUEevaluated 258 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 467 times by 1 test
Evaluated by:
  • pr
&& balance_columns
balance_columnsDescription
TRUEevaluated 258 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
)
0-467
1614 {-
1615 p->char_func = store_char;-
1616 p->print_func = print_stored;-
1617 }
executed 258 times by 1 test: end of block
Executed by:
  • pr
258
1618 else-
1619 {-
1620 p->char_func = print_char;-
1621 p->print_func = read_line;-
1622 }
executed 467 times by 1 test: end of block
Executed by:
  • pr
467
1623-
1624 p->numbered = numbered_lines
numbered_linesDescription
TRUEevaluated 192 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 533 times by 1 test
Evaluated by:
  • pr
&& (!parallel_files
!parallel_filesDescription
TRUEevaluated 180 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 12 times by 1 test
Evaluated by:
  • pr
|| i == 1
i == 1Description
TRUEnever evaluated
FALSEevaluated 12 times by 1 test
Evaluated by:
  • pr
);
0-533
1625 p->start_position = h;-
1626}
executed 725 times by 1 test: end of block
Executed by:
  • pr
725
1627-
1628-
1629-
1630-
1631-
1632-
1633static -
1634 _Bool-
1635-
1636open_file (char *name, COLUMN *p)-
1637{-
1638 if ((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1639 __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1640 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1641 ) && __builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1642 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1643 ) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1644 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1645 ), __s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1646 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1647 ), (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1648 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1649 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1650 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1651 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1652 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1653 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1654 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1655 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1656 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1657 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1658 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1659 ) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1660 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1661 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1662 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1663 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1664 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1665 ) == 1) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1666 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1667 ), __s1_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1668 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1669 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1670 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1671 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1672 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1673 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1674 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1675 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1676 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1677 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1678 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1679 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1680 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1681 ))[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
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1682 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1683 ))[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
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1684 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1685 ))[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 *) ( name ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1686 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
never executed: __result = (((const unsigned char *) (const char *) ( name ))[3] - __s2[3]);
0-317
1687 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
never executed: __result = (((const unsigned char *) (const char *) ( name ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1688 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1689 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1690 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1691 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1692 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1693 ) == 1) && (__s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1694 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1695 ), __s2_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1696 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1697 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1698 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1699 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1700 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1701 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1702 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1703 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1704 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1705 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1706 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1707 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1708 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1709 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEevaluated 317 times by 1 test
Evaluated by:
  • pr
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1710 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1711 ))[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_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1712 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1713 ))[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]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1714 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
0-317
1715 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1716 name
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1717 ,
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1718 "-"
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1719 )))); })
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1720 == 0)
( __extension_...)))); }) == 0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
)
0-317
1721 {-
1722 p->name = -
1723 dcgettext (((void *)0), -
1724 "standard input"-
1725 , 5)-
1726 ;-
1727 p->fp = -
1728 stdin-
1729 ;-
1730 have_read_stdin = -
1731 1-
1732 ;-
1733 }
never executed: end of block
0
1734 else-
1735 {-
1736 p->name = name;-
1737 p->fp = fopen_safer (name, "r");-
1738 }
executed 317 times by 1 test: end of block
Executed by:
  • pr
317
1739 if (p->fp ==
p->fp == ((void *)0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1740 ((void *)0)
p->fp == ((void *)0)Description
TRUEnever evaluated
FALSEevaluated 317 times by 1 test
Evaluated by:
  • pr
0-317
1741 )-
1742 {-
1743 failed_opens = -
1744 1-
1745 ;-
1746 if (!ignore_failed_opens
!ignore_failed_opensDescription
TRUEnever evaluated
FALSEnever evaluated
)
0
1747 error (0,
never executed: error (0, (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
1748 (*__errno_location ())
never executed: error (0, (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
1749 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name));
never executed: error (0, (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, name));
0
1750 return
never executed: return 0 ;
never executed: return 0 ;
0
1751 0
never executed: return 0 ;
0
1752 ;
never executed: return 0 ;
0
1753 }-
1754 fadvise (p->fp, FADVISE_SEQUENTIAL);-
1755 p->status = OPEN;-
1756 p->full_page_printed = -
1757 0-
1758 ;-
1759 ++total_files;-
1760 return
executed 317 times by 1 test: return 1 ;
Executed by:
  • pr
executed 317 times by 1 test: return 1 ;
Executed by:
  • pr
317
1761 1
executed 317 times by 1 test: return 1 ;
Executed by:
  • pr
317
1762 ;
executed 317 times by 1 test: return 1 ;
Executed by:
  • pr
317
1763}-
1764-
1765-
1766-
1767-
1768-
1769-
1770static void-
1771close_file (COLUMN *p)-
1772{-
1773 COLUMN *q;-
1774 int i;-
1775-
1776 if (p->status == CLOSED
p->status == CLOSEDDescription
TRUEnever evaluated
FALSEevaluated 753 times by 1 test
Evaluated by:
  • pr
)
0-753
1777 return;
never executed: return;
0
1778 if (ferror_unlocked (p->fp)
ferror_unlocked (p->fp)Description
TRUEnever evaluated
FALSEevaluated 753 times by 1 test
Evaluated by:
  • pr
)
0-753
1779 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1780 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1781 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1782 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1783 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1784 (*__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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1785 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1786 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1787 ) ? (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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1788 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1789 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1790 (*__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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1791 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1792 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1793 ) ? (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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1794 if (fileno (p->fp) !=
fileno (p->fp) != 0Description
TRUEevaluated 311 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 442 times by 1 test
Evaluated by:
  • pr
311-442
1795 0
fileno (p->fp) != 0Description
TRUEevaluated 311 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 442 times by 1 test
Evaluated by:
  • pr
311-442
1796 && -
1797 rpl_fclose
rpl_fclose (p->fp) != 0Description
TRUEnever evaluated
FALSEevaluated 311 times by 1 test
Evaluated by:
  • pr
0-311
1798 (p->fp) != 0
rpl_fclose (p->fp) != 0Description
TRUEnever evaluated
FALSEevaluated 311 times by 1 test
Evaluated by:
  • pr
)
0-311
1799 ((
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1800 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1801 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1802 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1803 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1804 (*__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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1805 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1806 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1807 ) ? (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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1808 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1809 ,
never executed: ((!!sizeof (struct { _Static_assert ( 1 , "verify_expr (" "1" ", " "(error (1, (*__errno_location ()), \"%s\", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1810 (*__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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1811 , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1812 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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1813 ) ? (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, p->name)), assume (false))" ")"); int _gl_dummy; })) ? ((error ( 1 , (*__errno_location (...n (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error ( 1 , (*__errno_location ()) , "%s", quotearg_n_style_colon (0, shell_escape_quoting_style, p->name)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
0
1814-
1815 if (!parallel_files
!parallel_filesDescription
TRUEevaluated 670 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 83 times by 1 test
Evaluated by:
  • pr
)
83-670
1816 {-
1817 for (q = column_vector, i = columns; i
iDescription
TRUEevaluated 1285 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 670 times by 1 test
Evaluated by:
  • pr
; ++q, --i)
670-1285
1818 {-
1819 q->status = CLOSED;-
1820 if (q->lines_stored == 0
q->lines_stored == 0Description
TRUEevaluated 1006 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 279 times by 1 test
Evaluated by:
  • pr
)
279-1006
1821 {-
1822 q->lines_to_print = 0;-
1823 }
executed 1006 times by 1 test: end of block
Executed by:
  • pr
1006
1824 }
executed 1285 times by 1 test: end of block
Executed by:
  • pr
1285
1825 }
executed 670 times by 1 test: end of block
Executed by:
  • pr
670
1826 else-
1827 {-
1828 p->status = CLOSED;-
1829 p->lines_to_print = 0;-
1830 }
executed 83 times by 1 test: end of block
Executed by:
  • pr
83
1831-
1832 --files_ready_to_read;-
1833}
executed 753 times by 1 test: end of block
Executed by:
  • pr
753
1834-
1835-
1836-
1837-
1838-
1839-
1840-
1841static void-
1842hold_file (COLUMN *p)-
1843{-
1844 COLUMN *q;-
1845 int i;-
1846-
1847 if (!parallel_files
!parallel_filesDescription
TRUEevaluated 3084 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 284 times by 1 test
Evaluated by:
  • pr
)
284-3084
1848 for (q = column_vector, i = columns; i
iDescription
TRUEevaluated 6132 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 3084 times by 1 test
Evaluated by:
  • pr
; ++q, --i)
3084-6132
1849 {-
1850 if (storing_columns
storing_columnsDescription
TRUEevaluated 2832 times by 1 test
Evaluated by:
  • pr
FALSEevaluated 3300 times by 1 test
Evaluated by:
  • pr
)
2832-3300
1851 q->status = FF_FOUND;
executed 2832 times by 1 test: q->status = FF_FOUND;
Executed by:
  • pr
2832
1852 else-
1853 q->status = ON_HOLD;
executed 3300 times by 1 test: q->status = ON_HOLD;
Executed by:
  • pr
3300
1854 }-
1855 else-
1856 p->status = ON_HOLD;
executed 284 times by 1 test: p->status = ON_HOLD;
Executed by:
  • pr
284
1857-
1858 p->lines_to_print = 0;-
1859 --files_ready_to_read;-
1860}
executed 3368 times by 1 test: end of block
Executed by:
  • pr
3368
1861-
1862-
1863-
1864-
1865static void-
1866reset_status (void)-
1867{-
1868 int i = columns;-