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/14 13:25] – [UNIT TESTS] mfee1 | 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 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 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===== | =====Reminder===== | ||
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 44: | 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 77: | 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. |
+ | |||
+ | 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 92: | Line 98: | ||
<cli> | <cli> | ||
USERNAME@lab46: | USERNAME@lab46: | ||
+ | </ | ||
+ | |||
+ | Make and print errors immediately: | ||
+ | <cli> | ||
+ | USERNAME@lab46: | ||
</ | </ | ||
Line 104: | 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 116: | Line 128: | ||
</ | </ | ||
You might be wondering the need for this line; why not just use NULL? Conceptually, | 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 ' |