This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:data:fall2022:projects:sln1 [2022/09/11 18:16] – [UNIT TESTS] pleblanc | notes:data:fall2022:projects:sln1 [2022/09/15 02:22] (current) – [Useful commands] bbarrow1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
=====BACKGROUND===== | =====BACKGROUND===== | ||
- | Building | + | In this project, we will be building |
+ | |||
=====SPECIFICATIONS===== | =====SPECIFICATIONS===== | ||
- | In simple words, after you've grabbed the project files, it is our task to edit the cp.c mk.c, and rm.c files inside the '// | + | In simple words, after you've grabbed the project files, it is our task to edit the cp.c mk.c, and rm.c files inside the '// |
We have many files for reference at our disposal. The most important files to execute, read, and analyze are contained within the '// | We have many files for reference at our disposal. The most important files to execute, read, and analyze are contained within the '// | ||
Line 9: | Line 11: | ||
As explained down below in the Unit Test section, another set of important files is contained within the '// | As explained down below in the Unit Test section, another set of important files is contained within the '// | ||
- | //You will find a " | + | //You will find a " |
- | ===Reminder=== | + | The mknode() program should allocate memory for a new node, verify that the allocation was successful, and then populate and return the address to the new node. The rmnode() program should only de-allocate the node passed into the program. |
+ | =====Reminder===== | ||
Whenever you allocate a resource, check that the memory allocation, be that for a file or a pointer, is valid. In other words, check that your pointer/ | Whenever you allocate a resource, check that the memory allocation, be that for a file or a pointer, is valid. In other words, check that your pointer/ | ||
Line 25: | Line 28: | ||
</ | </ | ||
=====PROGRAM===== | =====PROGRAM===== | ||
- | Program should be able to perform specifications displayed inside the files. For example, inside src/ | + | Program should be able to perform specifications displayed inside the files. For example, inside src/ |
+ | When making the three programs, first look at " | ||
+ | When copying the node you do not need to allocate space, rather use an existing function. | ||
+ | When removing you should think about how malloc works and what the node would become. | ||
+ | In each of these codes think about what it is you want to be returned.\\ | ||
**Directories containing vital project information: | **Directories containing vital project information: | ||
- | * ''/ | + | * ''/ |
* ''/ | * ''/ | ||
* ''/ | * ''/ | ||
Line 41: | Line 47: | ||
To test your implementation, | To test your implementation, | ||
+ | Note- If you are not in your base directory you might run into issues with make and make check. | ||
This process can be done on lab46 or a linux-esque device(your pi), however implementation on other OS is not guaranteed. This example will be done using lab46. | This process can be done on lab46 or a linux-esque device(your pi), however implementation on other OS is not guaranteed. This example will be done using lab46. | ||
Line 74: | Line 81: | ||
</ | </ | ||
- | If you run into any issues (perhaps from running make **not** in the base directory), try **make clean && make** to rebuild your project. | + | If you run into any issues (perhaps from running make **not** in the base directory), try **make clean && make** to rebuild your project. Typing **cat errors** at the prompt, may quite beneficial in figuring out what exactly is making your unit tests come back as mismatches. You can also run **make debug** instead of **make**, to get the errors immediately. |
- | ====Another set of useful | + | |
+ | You can run single unit tests via **bin/< | ||
+ | =====Useful | ||
+ | Get a full list of options: | ||
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
</ | </ | ||
- | //Make help displays all available options for the Make command// | ||
+ | Verify that the implementation of your nodes is functional: | ||
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
</ | </ | ||
- | // | + | |
+ | Remove all compiled binaries: | ||
+ | < | ||
+ | USERNAME@lab46: | ||
+ | </ | ||
+ | |||
+ | Make and print errors immediately: | ||
+ | < | ||
+ | USERNAME@lab46: | ||
+ | </ | ||
+ | |||
+ | Submit assignment: | ||
+ | < | ||
+ | USERNAME@lab46: | ||
+ | </ | ||
+ | |||
+ | Update project (if any verify | ||
+ | < | ||
+ | USERNAME@lab46: | ||
+ | </ | ||
+ | |||
+ | Upgrade to the next project (sll0)\\ | ||
+ | **Note this takes current sln1 directory and copies your codes into sll0, use only when done.** | ||
+ | < | ||
+ | USERNAME@lab46: | ||
+ | </ | ||
+ | =====NULL vs UNDEFINED===== | ||
+ | As you explore this project and it's related files, you'll likely find this definition in // | ||
+ | <code c> | ||
+ | #if !defined(UNDEFINED) | ||
+ | #define UNDEFINED ((void*)1) | ||
+ | #endif | ||
+ | </ | ||
+ | You might be wondering the need for this line; why not just use NULL? Conceptually, | ||
+ | |||
+ | =====NOTE===== | ||
+ | Before running the ' | ||
+ | |||
+ | Also, use the 'make clean' command before running ' |