OpenCoverage

env.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/coreutils/src/src/env.c
Switch to Source codePreprocessed file
LineSourceCount
1-
2-
3static struct option const longopts[] =-
4{-
5 {"ignore-environment", -
6 0-
7 , -
8 ((void *)0)-
9 , 'i'},-
10 {"null", -
11 0-
12 , -
13 ((void *)0)-
14 , '0'},-
15 {"unset", -
16 1-
17 , -
18 ((void *)0)-
19 , 'u'},-
20 {"chdir", -
21 1-
22 , -
23 ((void *)0)-
24 , 'C'},-
25 {"help", -
26 0-
27 , -
28 ((void *)0)-
29 , GETOPT_HELP_CHAR},-
30 {"version", -
31 0-
32 , -
33 ((void *)0)-
34 , GETOPT_VERSION_CHAR},-
35 {-
36 ((void *)0)-
37 , 0, -
38 ((void *)0)-
39 , 0}-
40};-
41-
42void-
43usage (int status)-
44{-
45 if (status !=
status != 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • env
FALSEevaluated 74 times by 1 test
Evaluated by:
  • env
21-74
46 0
status != 0Description
TRUEevaluated 21 times by 1 test
Evaluated by:
  • env
FALSEevaluated 74 times by 1 test
Evaluated by:
  • env
21-74
47 )-
48 do { fprintf (-
49 stderr-
50 , -
51 dcgettext (((void *)0), -
52 "Try '%s --help' for more information.\n"-
53 , 5)-
54 , program_name); }
executed 21 times by 1 test: end of block
Executed by:
  • env
while (0);
21
55 else-
56 {-
57 printf (-
58 dcgettext (((void *)0), -
59 "Usage: %s [OPTION]... [-] [NAME=VALUE]... [COMMAND [ARG]...]\n"-
60 , 5)-
61 -
62 ,-
63 program_name);-
64 fputs_unlocked (-
65 dcgettext (((void *)0), -
66 "Set each NAME to VALUE in the environment and run COMMAND.\n"-
67 , 5)-
68 ,-
69 stdout-
70 )-
71-
72 ;-
73-
74 emit_mandatory_arg_note ();-
75-
76 fputs_unlocked (-
77 dcgettext (((void *)0), -
78 " -i, --ignore-environment start with an empty environment\n -0, --null end each output line with NUL, not newline\n -u, --unset=NAME remove variable from the environment\n"-
79 , 5)-
80 ,-
81 stdout-
82 )-
83-
84-
85-
86 ;-
87 fputs_unlocked (-
88 dcgettext (((void *)0), -
89 " -C, --chdir=DIR change working directory to DIR\n"-
90 , 5)-
91 ,-
92 stdout-
93 )-
94-
95 ;-
96 fputs_unlocked (-
97 dcgettext (((void *)0), -
98 " --help display this help and exit\n"-
99 , 5)-
100 ,-
101 stdout-
102 );-
103 fputs_unlocked (-
104 dcgettext (((void *)0), -
105 " --version output version information and exit\n"-
106 , 5)-
107 ,-
108 stdout-
109 );-
110 fputs_unlocked (-
111 dcgettext (((void *)0), -
112 "\nA mere - implies -i. If no COMMAND, print the resulting environment.\n"-
113 , 5)-
114 ,-
115 stdout-
116 )-
117-
118-
119 ;-
120 emit_ancillary_info ("env");-
121 }
executed 74 times by 1 test: end of block
Executed by:
  • env
74
122 exit (status);
executed 95 times by 1 test: exit (status);
Executed by:
  • env
95
123}-
124-
125int-
126main (int argc, char **argv)-
127{-
128 int optc;-
129 -
130 _Bool -
131 ignore_environment = -
132 0-
133 ;-
134 -
135 _Bool -
136 opt_nul_terminate_output = -
137 0-
138 ;-
139 char const *newdir = -
140 ((void *)0)-
141 ;-
142-
143 ;-
144 set_program_name (argv[0]);-
145 setlocale (-
146 6-
147 , "");-
148 bindtextdomain ("coreutils", "/usr/local/share/locale");-
149 textdomain ("coreutils");-
150-
151 initialize_exit_failure (EXIT_CANCELED);-
152 atexit (close_stdout);-
153-
154 while ((
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 177 times by 1 test
Evaluated by:
  • env
FALSEevaluated 25 times by 1 test
Evaluated by:
  • env
optc = getopt_long (argc, argv, "+C:iu:0", longopts,
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 177 times by 1 test
Evaluated by:
  • env
FALSEevaluated 25 times by 1 test
Evaluated by:
  • env
25-177
155 ((void *)0)
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 177 times by 1 test
Evaluated by:
  • env
FALSEevaluated 25 times by 1 test
Evaluated by:
  • env
25-177
156 )) != -1
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 177 times by 1 test
Evaluated by:
  • env
FALSEevaluated 25 times by 1 test
Evaluated by:
  • env
)
25-177
157 {-
158 switch (optc)-
159 {-
160 case
executed 20 times by 1 test: case 'i':
Executed by:
  • env
'i':
executed 20 times by 1 test: case 'i':
Executed by:
  • env
20
161 ignore_environment = -
162 1-
163 ;-
164 break;
executed 20 times by 1 test: break;
Executed by:
  • env
20
165 case
executed 21 times by 1 test: case 'u':
Executed by:
  • env
'u':
executed 21 times by 1 test: case 'u':
Executed by:
  • env
21
166 break;
executed 21 times by 1 test: break;
Executed by:
  • env
21
167 case
executed 20 times by 1 test: case '0':
Executed by:
  • env
'0':
executed 20 times by 1 test: case '0':
Executed by:
  • env
20
168 opt_nul_terminate_output = -
169 1-
170 ;-
171 break;
executed 20 times by 1 test: break;
Executed by:
  • env
20
172 case
executed 18 times by 1 test: case 'C':
Executed by:
  • env
'C':
executed 18 times by 1 test: case 'C':
Executed by:
  • env
18
173 newdir = optarg;-
174 break;
executed 18 times by 1 test: break;
Executed by:
  • env
18
175 case
executed 74 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • env
GETOPT_HELP_CHAR:
executed 74 times by 1 test: case GETOPT_HELP_CHAR:
Executed by:
  • env
usage (
74
176 0-
177 ); break;
never executed: break;
;
0
178 case
executed 5 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • env
GETOPT_VERSION_CHAR:
executed 5 times by 1 test: case GETOPT_VERSION_CHAR:
Executed by:
  • env
version_etc (
5
179 stdout-
180 , "env", "GNU coreutils", Version, ("Richard Mlynarik"), ("David MacKenzie"), (char *) -
181 ((void *)0)-
182 ); exit (
executed 5 times by 1 test: exit ( 0 );
Executed by:
  • env
5
183 0
executed 5 times by 1 test: exit ( 0 );
Executed by:
  • env
5
184 );
executed 5 times by 1 test: exit ( 0 );
Executed by:
  • env
break;
never executed: break;
;
0-5
185 default
executed 19 times by 1 test: default:
Executed by:
  • env
:
executed 19 times by 1 test: default:
Executed by:
  • env
19
186 usage (EXIT_CANCELED);-
187 }
never executed: end of block
0
188 }-
189-
190 if (optind < argc
optind < argcDescription
TRUEevaluated 14 times by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
&& (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-14
191 __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
192 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
193 ) && __builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
194 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
195 ) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
196 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
197 ), __s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
198 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
199 ), (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
200 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
201 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
202 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
203 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
204 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
205 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
206 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
207 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
208 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
209 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
210 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
211 ) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
212 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
213 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
214 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
215 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
216 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
217 ) == 1) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
218 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
219 ), __s1_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
220 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
221 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
222 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
223 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
224 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
225 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
226 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
227 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
228 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
229 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
230 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
231 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
232 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
233 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-13
234 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
235 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-13
236 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
237 ))[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 *) ( argv[optind] ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-13
238 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( argv[optind] ))[3] - __s2[3]);
0-13
239 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( argv[optind] ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-13
240 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
241 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
242 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
243 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
244 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
245 ) == 1) && (__s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
246 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
247 ), __s2_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
248 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
249 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
250 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
251 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
252 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
253 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
254 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
255 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
256 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
257 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
258 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
259 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
260 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
261 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEevaluated 14 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-14
262 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
263 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEnever evaluated
FALSEevaluated 1 time by 1 test
Evaluated by:
  • env
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-13
264 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
265 ))[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
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-13
266 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
0-13
267 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
}
never executed: end of block
} __result; }))) : __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
0-13
268 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
269 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
270 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
271 )))); })
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
1-13
272 == 0)
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 13 times by 1 test
Evaluated by:
  • env
)
1-13
273 ignore_environment =
executed 1 time by 1 test: ignore_environment = 1 ;
Executed by:
  • env
1
274 1
executed 1 time by 1 test: ignore_environment = 1 ;
Executed by:
  • env
1
275 ;
executed 1 time by 1 test: ignore_environment = 1 ;
Executed by:
  • env
1
276-
277 if (ignore_environment
ignore_environmentDescription
TRUEevaluated 5 times by 1 test
Evaluated by:
  • env
FALSEevaluated 20 times by 1 test
Evaluated by:
  • env
)
5-20
278 {-
279 static char *dummy_environ[] = { -
280 ((void *)0) -
281 };-
282 environ = dummy_environ;-
283 }
executed 5 times by 1 test: end of block
Executed by:
  • env
5
284-
285 optind = 0;-
286 while ((
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 15 times by 1 test
Evaluated by:
  • env
FALSEevaluated 23 times by 1 test
Evaluated by:
  • env
optc = getopt_long (argc, argv, "+C:iu:0", longopts,
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 15 times by 1 test
Evaluated by:
  • env
FALSEevaluated 23 times by 1 test
Evaluated by:
  • env
15-23
287 ((void *)0)
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 15 times by 1 test
Evaluated by:
  • env
FALSEevaluated 23 times by 1 test
Evaluated by:
  • env
15-23
288 )) != -1
(optc = getopt... *)0) )) != -1Description
TRUEevaluated 15 times by 1 test
Evaluated by:
  • env
FALSEevaluated 23 times by 1 test
Evaluated by:
  • env
)
15-23
289 if (optc == 'u'
optc == 'u'Description
TRUEevaluated 5 times by 1 test
Evaluated by:
  • env
FALSEevaluated 10 times by 1 test
Evaluated by:
  • env
&& unsetenv (optarg)
unsetenv (optarg)Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • env
FALSEevaluated 3 times by 1 test
Evaluated by:
  • env
)
2-10
290 ((
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error (EXIT_CANCELED,
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
291 (*__errno_location ())
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
292 ,
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
293 dcgettext (((void *)0),
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
294 "cannot unset %s"
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
295 , 5)
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
296 , quote (optarg)), ((
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
297 0
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
298 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED,
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
299 (*__errno_location ())
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
300 ,
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
301 dcgettext (((void *)0),
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
302 "cannot unset %s"
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
303 , 5)
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
304 , quote (optarg)), ((
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
305 0
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
306 ) ? (void) 0 : __builtin_unreachable ()))));
executed 2 times by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot unset %s\", 5), quote (optarg)), assume (false))" ")"); int _gl_dummy; })) ? ((error ...cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot unset %s" , 5) , quote (optarg)), (( 0 ) ? (void) 0 : __builtin_unreachable ()))));
Executed by:
  • env
2
307-
308 if (optind < argc
optind < argcDescription
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
&& (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-12
309 __extension__ ({ size_t __s1_len, __s2_len; (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
310 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
311 ) && __builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
312 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
313 ) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
314 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
315 ), __s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
316 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
317 ), (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
318 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
319 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
320 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
321 ) == 1) || __s1_len >= 4) && (!((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
322 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
323 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
324 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
325 ) == 1) || __s2_len >= 4)) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
326 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
327 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
328 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
329 ) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
330 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
331 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
332 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
333 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
334 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
335 ) == 1) && (__s1_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
336 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
337 ), __s1_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
338 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
339 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
340 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
341 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
342 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
343 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
344 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
345 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
346 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
347 ) : (__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
348 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
349 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
350 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
351 ))[0] - __s2[0]); if (__s1_len > 0
__s1_len > 0Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-11
352 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
353 ))[1] - __s2[1]); if (__s1_len > 1
__s1_len > 1Description
TRUEnever evaluated
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-11
354 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
355 ))[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 *) ( argv[optind] ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-11
356 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( argv[optind] ))[3] - __s2[3]);
0-11
357 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( argv[optind] ))[3] - __s2[3]);
}
never executed: end of block
}
never executed: end of block
__result; }))) : (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-11
358 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
359 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
360 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
361 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
362 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
363 ) == 1) && (__s2_len = __builtin_strlen (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
364 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
365 ), __s2_len < 4) ? (__builtin_constant_p (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
366 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
367 ) && ((size_t)(const void *)((
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
368 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
369 ) + 1) - (size_t)(const void *)(
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
370 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
371 ) == 1) ? __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
372 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
373 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
374 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
375 ) : -(__extension__ ({ const unsigned char *__s2 = (const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
376 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
377 ); int __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
378 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
379 ))[0] - __s2[0]); if (__s2_len > 0
__s2_len > 0Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
&& __result == 0
__result == 0Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-12
380 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
381 ))[1] - __s2[1]); if (__s2_len > 1
__s2_len > 1Description
TRUEnever evaluated
FALSEevaluated 1 time by 1 test
Evaluated by:
  • env
&& __result == 0
__result == 0Description
TRUEnever evaluated
FALSEnever evaluated
) { __result = (((const unsigned char *) (const char *) (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-11
382 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
383 ))[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
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-11
384 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
0-11
385 ))[3] - __s2[3]);
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
never executed: __result = (((const unsigned char *) (const char *) ( "-" ))[3] - __s2[3]);
}
never executed: end of block
} __result; }))) : __builtin_strcmp (
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
0-11
386 argv[optind]
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
387 ,
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
388 "-"
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
389 )))); })
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
1-11
390 == 0)
( __extension_...)))); }) == 0)Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 11 times by 1 test
Evaluated by:
  • env
)
1-11
391 ++
executed 1 time by 1 test: ++optind;
Executed by:
  • env
optind;
executed 1 time by 1 test: ++optind;
Executed by:
  • env
1
392-
393 char *eq;-
394 while (optind < argc
optind < argcDescription
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEevaluated 17 times by 1 test
Evaluated by:
  • env
&& (
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
eq =
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6-17
395 (__extension__ (__builtin_constant_p (
__builtin_constant_p ( '=' )Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
0-12
396 '='
__builtin_constant_p ( '=' )Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
0-12
397 )
__builtin_constant_p ( '=' )Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
&& !__builtin_constant_p (
!__builtin_con...argv[optind] )Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
0-12
398 argv[optind]
!__builtin_con...argv[optind] )Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
0-12
399 )
!__builtin_con...argv[optind] )Description
TRUEevaluated 12 times by 1 test
Evaluated by:
  • env
FALSEnever evaluated
&& (
( '=' ) == '\0'Description
TRUEnever evaluated
FALSEevaluated 12 times by 1 test
Evaluated by:
  • env
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
0-12
400 '='
( '=' ) == '\0'Description
TRUEnever evaluated
FALSEevaluated 12 times by 1 test
Evaluated by:
  • env
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
0-12
401 ) == '\0'
( '=' ) == '\0'Description
TRUEnever evaluated
FALSEevaluated 12 times by 1 test
Evaluated by:
  • env
? (char *) __rawmemchr (
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
0-12
402 argv[optind]
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
403 ,
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
404 '='
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
405 ) : __builtin_strchr (
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
406 argv[optind]
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
407 ,
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
408 '='
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
409 )))
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
6
410 )
(eq = (__exten...d] , '=' ))) )Description
TRUEevaluated 6 times by 1 test
Evaluated by:
  • env
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
)
6
411 {-
412 if (putenv (argv[optind])
putenv (argv[optind])Description
TRUEnever evaluated
FALSEevaluated 6 times by 1 test
Evaluated by:
  • env
)
0-6
413 {-
414 *eq = '\0';-
415 ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot set %s\", 5), quote (argv[optind])), assume (false))" ")"); int _gl_dummy; })) ? ((error (EXIT_CANCELED, -
416 (*__errno_location ())-
417 , -
418 dcgettext (((void *)0), -
419 "cannot set %s"-
420 , 5)-
421 , quote (argv[optind])), ((-
422 0-
423 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED, -
424 (*__errno_location ())-
425 , -
426 dcgettext (((void *)0), -
427 "cannot set %s"-
428 , 5)-
429 , quote (argv[optind])), ((-
430 0-
431 ) ? (void) 0 : __builtin_unreachable ()))))-
432 ;-
433 }
never executed: end of block
0
434 optind++;-
435 }
executed 6 times by 1 test: end of block
Executed by:
  • env
6
436-
437 -
438 _Bool -
439 program_specified = optind < argc;-
440-
441 if (opt_nul_terminate_output
opt_nul_terminate_outputDescription
TRUEevaluated 4 times by 1 test
Evaluated by:
  • env
FALSEevaluated 19 times by 1 test
Evaluated by:
  • env
&& program_specified
program_specifiedDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 3 times by 1 test
Evaluated by:
  • env
)
1-19
442 {-
443 error (0, 0, -
444 dcgettext (((void *)0), -
445 "cannot specify --null (-0) with command"-
446 , 5)-
447 );-
448 usage (EXIT_CANCELED);-
449 }
never executed: end of block
0
450-
451 if (newdir
newdirDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • env
FALSEevaluated 20 times by 1 test
Evaluated by:
  • env
&& ! program_specified
! program_specifiedDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 1 time by 1 test
Evaluated by:
  • env
)
1-20
452 {-
453 error (0, 0, -
454 dcgettext (((void *)0), -
455 "must specify command with --chdir (-C)"-
456 , 5)-
457 );-
458 usage (EXIT_CANCELED);-
459 }
never executed: end of block
0
460-
461 if (! program_specified
! program_specifiedDescription
TRUEevaluated 16 times by 1 test
Evaluated by:
  • env
FALSEevaluated 5 times by 1 test
Evaluated by:
  • env
)
5-16
462 {-
463-
464 char *const *e = environ;-
465 while (*
*eDescription
TRUEevaluated 568 times by 1 test
Evaluated by:
  • env
FALSEevaluated 16 times by 1 test
Evaluated by:
  • env
e
*eDescription
TRUEevaluated 568 times by 1 test
Evaluated by:
  • env
FALSEevaluated 16 times by 1 test
Evaluated by:
  • env
)
16-568
466 printf ("%s%c", *e++, opt_nul_terminate_output ? '\0' : '\n');
executed 568 times by 1 test: printf ("%s%c", *e++, opt_nul_terminate_output ? '\0' : '\n');
Executed by:
  • env
568
467 return
executed 16 times by 1 test: return 0 ;
Executed by:
  • env
executed 16 times by 1 test: return 0 ;
Executed by:
  • env
16
468 0
executed 16 times by 1 test: return 0 ;
Executed by:
  • env
16
469 ;
executed 16 times by 1 test: return 0 ;
Executed by:
  • env
16
470 }-
471-
472 if (newdir
newdirDescription
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEevaluated 4 times by 1 test
Evaluated by:
  • env
)
1-4
473 {-
474 if (chdir (newdir) != 0
chdir (newdir) != 0Description
TRUEevaluated 1 time by 1 test
Evaluated by:
  • env
FALSEnever evaluated
)
0-1
475 ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newdir)), assume (false))" ")"); int _gl_dummy; })) ? ((error (EXIT_CANCELED,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
476 (*__errno_location ())
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
477 ,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
478 dcgettext (((void *)0),
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
479 "cannot change directory to %s"
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
480 , 5)
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
481 , quotearg_style (shell_escape_always_quoting_style, newdir)), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
482 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
483 ) ? (void) 0 : __builtin_unreachable ()))) : ((error (EXIT_CANCELED,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
484 (*__errno_location ())
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
485 ,
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
486 dcgettext (((void *)0),
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
487 "cannot change directory to %s"
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
488 , 5)
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
489 , quotearg_style (shell_escape_always_quoting_style, newdir)), ((
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
490 0
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
491 ) ? (void) 0 : __builtin_unreachable ()))))
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
492 ;
executed 1 time by 1 test: ((!!sizeof (struct { _Static_assert (EXIT_CANCELED, "verify_expr (" "EXIT_CANCELED" ", " "(error (EXIT_CANCELED, (*__errno_location ()), dcgettext (((void *)0), \"cannot change directory to %s\", 5), quotearg_style (shell_escape_always_quoting_style, newd...: __builtin_unreachable ()))) : ((error (EXIT_CANCELED, (*__errno_location ()) , dcgettext (((void *)0), "cannot change directory to %s" , 5) , quotearg_style (shell_escape_always_quoting_style, newdir)), (( 0 ) ? (void) 0 : __builtin_unreachable ())))) ;
Executed by:
  • env
1
493 }
never executed: end of block
0
494-
495 execvp (argv[optind], &argv[optind]);-
496-
497 int exit_status = -
498 (*
(*__errno_location ()) == 2Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • env
FALSEevaluated 1 time by 1 test
Evaluated by:
  • env
__errno_location ())
(*__errno_location ()) == 2Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • env
FALSEevaluated 1 time by 1 test
Evaluated by:
  • env
1-3
499 ==
(*__errno_location ()) == 2Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • env
FALSEevaluated 1 time by 1 test
Evaluated by:
  • env
1-3
500 2
(*__errno_location ()) == 2Description
TRUEevaluated 3 times by 1 test
Evaluated by:
  • env
FALSEevaluated 1 time by 1 test
Evaluated by:
  • env
1-3
501 ? EXIT_ENOENT : EXIT_CANNOT_INVOKE;-
502 error (0, -
503 (*__errno_location ())-
504 , "%s", quote (argv[optind]));-
505 return
executed 4 times by 1 test: return exit_status;
Executed by:
  • env
exit_status;
executed 4 times by 1 test: return exit_status;
Executed by:
  • env
4
506}-
Switch to Source codePreprocessed file

Generated by Squish Coco 4.1.2