This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2022:projects:sll0 [2022/09/17 16:43] – [UNIT TESTS] hcordell | notes:data:fall2022:projects:sll0 [2022/09/22 03:39] (current) – [DEBUGGING ADVICE] rcorcor1 | ||
---|---|---|---|
Line 35: | Line 35: | ||
**NOTICE:** To easily compile your files, from the base directory you can run **make clean** followed by **make default** afterwards you can run **make check** or inside the bin folder run the desired unit test if you want more specific information of what went wrong. | **NOTICE:** To easily compile your files, from the base directory you can run **make clean** followed by **make default** afterwards you can run **make check** or inside the bin folder run the desired unit test if you want more specific information of what went wrong. | ||
+ | |||
+ | Another thing to note is that the sll0 project files can only compile with version 9 of gcc. If you are not on lab46 and the project fails to build the library or unit tests, this may be because you are using a newer or older version of gcc. | ||
+ | |||
+ | You can use an older version of gcc off of lab46 by using the following commands (assuming you are using a Raspberry Pi with it's default OS) in this link: | ||
+ | [[https:// | ||
*Our task is to ask questions on Discord or in class and document our findings on this wiki page collaboratively, | *Our task is to ask questions on Discord or in class and document our findings on this wiki page collaboratively, | ||
Line 40: | Line 45: | ||
*For anybody interested in editing the wiki page, here is the dokuwiki user guide: [[https:// | *For anybody interested in editing the wiki page, here is the dokuwiki user guide: [[https:// | ||
=====PROGRAM===== | =====PROGRAM===== | ||
- | **mklist()** should make a new list containing a lead and last node. These nodes point to the start and end of the list. | ||
- | **getpos()** should get the position of the node passed into the function. It should look at the node passed in -> info and find that node inside the list. If that node isn't found inside | + | There are four programs |
+ | **mklist()** should make a new list containing a lead and last node. These nodes point to the start and end of the list. | ||
+ | Is very similar to mknode().**For Errors**: On error, return NULL. | ||
+ | **getpos()** should get the position of the node passed into the function. It should look at the node passed in -> info and find that node inside the list. If that node isn't found inside the list it should return the appropriate error specified inside pos.c. | ||
+ | Start a temp node at the beginning of the list and go through each node until the given node is reached, using some form of a counter to obtain that positions value. | ||
+ | **For Errors**: If Null/ | ||
**setpos()** should set a new Node* to a position specified by a number passed into the function, think of setting a tmp variable and looping to get to that position as done in sln0. | **setpos()** should set a new Node* to a position specified by a number passed into the function, think of setting a tmp variable and looping to get to that position as done in sln0. | ||
+ | **For Errors**: If Null/ | ||
**insert()** should put a new node containing a value passed into the function before the specified place. This place will be passed into the function as will the new node. For optimization of your program these should utilize the setpos() and getpos() functions to set new nodes to maintain the list. The list should be able to insert before the start and anywhere else. Remember that if the node is one after the start, you will have to set the lead's right to the new node. | **insert()** should put a new node containing a value passed into the function before the specified place. This place will be passed into the function as will the new node. For optimization of your program these should utilize the setpos() and getpos() functions to set new nodes to maintain the list. The list should be able to insert before the start and anywhere else. Remember that if the node is one after the start, you will have to set the lead's right to the new node. | ||
- | =====OUTPUT SPECIFICATIONS===== | ||
+ | **displayf()** should display the list in a forward orientation (start-> | ||
+ | i.e 4 -> 13 -> -1 -> NULL. | ||
+ | |||
+ | The second mode is to display the index along with the values of the list. | ||
+ | i.e 4[0] -> 10[1] -> .... -> NULL | ||
+ | |||
+ | =====DEBUGGING ADVICE===== | ||
+ | One tool that can be utilised for debugging is the gdb and make debug commands. Use the command make with the argument debug (typed as "make debug" | ||
+ | |||
+ | An " | ||
+ | After running " | ||
+ | |||
+ | =====OUTPUT SPECIFICATIONS===== | ||
+ | The only program that will be displaying output is the display function, with it possessing a standard mode and an indexed mode. The standard will simply show the values one after another, such as "0 -> 3 -> 7 -> 9 -> 19 -> NULL". The indexed mode will show the list address (starting at 0) along with the index location, such that "[0] 0 -> [1] 3 -> [2] 7 ->[3] 9 -> NULL". Note that the NULL is not accompanied by a list address. | ||
=====UNIT TESTS===== | =====UNIT TESTS===== | ||
When running **make check** there will be 43 total match checks, when the functions are setup correctly, all 43 should match the output of the unit tests. | When running **make check** there will be 43 total match checks, when the functions are setup correctly, all 43 should match the output of the unit tests. | ||
+ | |||
+ | You may receive an error that looks something like this: | ||
+ | <cli> | ||
+ | YOURNAME@lab46: | ||
+ | ====================================================== | ||
+ | = Verifying Singly-Linked | ||
+ | ====================================================== | ||
+ | [mklist] Total: | ||
+ | [insert] Total: | ||
+ | [displayf] Total: | ||
+ | [getpos] Total: | ||
+ | [setpos] *** NOT CURRENTLY OPERATIONAL | ||
+ | ====================================================== | ||
+ | | ||
+ | ====================================================== | ||
+ | </ | ||
+ | |||
+ | This does not mean the verify script is broken, you likely have a __segmentation fault__. | ||
+ | \\ | ||
+ | To analyze further, navigate to **sll0/ | ||
+ | <cli> | ||
+ | YOURNAME@lab46: | ||
+ | YOURNAME@lab46: | ||
+ | UNIT TEST: list library setpos() function | ||
+ | ========================================= | ||
+ | |||
+ | Test 0: Running setpos() on NULL list ... | ||
+ | Segmentation fault (core dumped) | ||
+ | </ | ||
+ | Indeed, a segmentation fault. You'll also receive this error if you haven' |