Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I maximize code coverage?
    text
    copied!<p>Hey all, the following is a snippet of code taken from the unix ptx utility. I'm attempting to maximize code coverage on this utility, but I am unable to reach the indicated portion of code. Admittedly, I'm not as strong in my C skills as I used to be. The portion of code is indicated with comments, but it is towards the bottom of the block.</p> <pre><code>if (used_length == allocated_length) { allocated_length += (1 &lt;&lt; SWALLOW_REALLOC_LOG); block-&gt;start = (char *) xrealloc (block-&gt;start, allocated_length); } </code></pre> <p>Any help interpreting the indicated portion in order to cover that block would be greatly appreciated.</p> <pre><code>/* Reallocation step when swallowing non regular files. The value is not the actual reallocation step, but its base two logarithm. */ #define SWALLOW_REALLOC_LOG 12 static void swallow_file_in_memory (const char *file_name, BLOCK *block) { int file_handle; /* file descriptor number */ struct stat stat_block; /* stat block for file */ size_t allocated_length; /* allocated length of memory buffer */ size_t used_length; /* used length in memory buffer */ int read_length; /* number of character gotten on last read */ /* As special cases, a file name which is NULL or "-" indicates standard input, which is already opened. In all other cases, open the file from its name. */ bool using_stdin = !file_name || !*file_name || strcmp (file_name, "-") == 0; if (using_stdin) file_handle = STDIN_FILENO; else if ((file_handle = open (file_name, O_RDONLY)) &lt; 0) error (EXIT_FAILURE, errno, "%s", file_name); /* If the file is a plain, regular file, allocate the memory buffer all at once and swallow the file in one blow. In other cases, read the file repeatedly in smaller chunks until we have it all, reallocating memory once in a while, as we go. */ if (fstat (file_handle, &amp;stat_block) &lt; 0) error (EXIT_FAILURE, errno, "%s", file_name); if (S_ISREG (stat_block.st_mode)) { size_t in_memory_size; block-&gt;start = (char *) xmalloc ((size_t) stat_block.st_size); if ((in_memory_size = read (file_handle, block-&gt;start, (size_t) stat_block.st_size)) != stat_block.st_size) { error (EXIT_FAILURE, errno, "%s", file_name); } block-&gt;end = block-&gt;start + in_memory_size; } else { block-&gt;start = (char *) xmalloc ((size_t) 1 &lt;&lt; SWALLOW_REALLOC_LOG); used_length = 0; allocated_length = (1 &lt;&lt; SWALLOW_REALLOC_LOG); while (read_length = read (file_handle, block-&gt;start + used_length, allocated_length - used_length), read_length &gt; 0) { used_length += read_length; /* Cannot cover from this point...*/ if (used_length == allocated_length) { allocated_length += (1 &lt;&lt; SWALLOW_REALLOC_LOG); block-&gt;start = (char *) xrealloc (block-&gt;start, allocated_length); } /* ...to this point. */ } if (read_length &lt; 0) error (EXIT_FAILURE, errno, "%s", file_name); block-&gt;end = block-&gt;start + used_length; } /* Close the file, but only if it was not the standard input. */ if (! using_stdin &amp;&amp; close (file_handle) != 0) error (EXIT_FAILURE, errno, "%s", file_name); } </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload