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/15 00:01] – [UNIT TESTS] rcorcor1 | notes:data:fall2022:projects:sln1 [2022/09/15 02:22] (current) – [Useful commands] bbarrow1 | ||
---|---|---|---|
Line 5: | Line 5: | ||
=====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 11: | 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 " |
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. | 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. | ||
Line 28: | 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 78: | 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. |
- | Cat errors can be quite beneficial in figuring out what exactly is making your unit tests come back as mismatches. | + | |
+ | You can run single unit tests via **bin/< | ||
=====Useful commands===== | =====Useful commands===== | ||
Get a full list of options: | Get a full list of options: | ||
Line 94: | Line 98: | ||
<cli> | <cli> | ||
USERNAME@lab46: | USERNAME@lab46: | ||
+ | </ | ||
+ | |||
+ | Make and print errors immediately: | ||
+ | <cli> | ||
+ | USERNAME@lab46: | ||
</ | </ | ||
Line 106: | Line 115: | ||
</ | </ | ||
- | Upgrade to the next project (sll0) | + | Upgrade to the next project (sll0)\\ |
+ | **Note this takes current sln1 directory and copies your codes into sll0, use only when done.** | ||
<cli> | <cli> | ||
USERNAME@lab46: | USERNAME@lab46: | ||
Line 122: | Line 132: | ||
Before running the ' | Before running the ' | ||
- | Also, use the 'make clean' command before running ' | + | Also, use the 'make clean' command before running ' |