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 13:41] – [PROGRAM] hcordell | 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: | ||
- | | + | * ''/ |
- | * ''/ | + | * '' |
- | * ''/ | + | * '' |
- | | + | * '' |
- | * /inc/ contains your header files used in most programs | + | |
- | * /unit/node/ contains your unit tests for mk.c, rm.c, and cp.c | + | |
- | * /src/node/ contains the mk.c, rm.c, and cp.c files | + | |
- | * / | + | |
=====OUTPUT SPECIFICATIONS===== | =====OUTPUT SPECIFICATIONS===== | ||
- | This may refer to output | + | There does not appear |
- | + | <fs small>Stay tuned for any updates!</fs> | |
- | + | ||
- | + | ||
- | <fs small>update with more information</fs> | + | |
=====UNIT TESTS===== | =====UNIT TESTS===== | ||
It is part of our evaluation to get as many tests as possible to match. Ideally, all should match. | It is part of our evaluation to get as many tests as possible to match. Ideally, all should match. | ||
- | For your initial unit tests of mknode(), cpnode(), and rmnode() you need to build your unit tests first. To do this you are going to want to run **make | + | To test your implementation, **navigate |
+ | 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. | ||
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
Building the NODE library | Building the NODE library | ||
======================================= | ======================================= | ||
Line 56: | Line 59: | ||
[CC] | [CC] | ||
| | ||
- | |||
- | </ | ||
- | {{ : | ||
- | |||
- | Afterwards, you will want to navigate to the unit/node directory and run **make all** there as well. | ||
- | <cli> | ||
- | USERNAME@lab46: | ||
Building NODE library unit tests | Building NODE library unit tests | ||
======================================= | ======================================= | ||
Line 70: | Line 66: | ||
[CC] | [CC] | ||
[CP] Copying to sln1/ | [CP] Copying to sln1/ | ||
+ | </ | ||
+ | <cli> | ||
+ | USERNAME@lab46: | ||
+ | ====================================================== | ||
+ | = Verifying Singly-Linked | ||
+ | ====================================================== | ||
+ | [mknode] Total: | ||
+ | [cpnode] Total: | ||
+ | [rmnode] Total: | ||
+ | ====================================================== | ||
+ | | ||
+ | ====================================================== | ||
</ | </ | ||
- | Afterwards, your unit tests will be available inside of the bin folder of your sln1 directory. | ||
- | Run these by executing the verify scripts. Example outputs are below. | ||
- | CP Node Verify: | + | 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===== | ||
+ | Get a full list of options: | ||
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
- | [test 0] MATCH | + | |
- | [test 1] MATCH | + | |
- | [test 2] MATCH | + | |
- | [test 3] MATCH | + | |
- | [test 4] MATCH | + | |
- | Total: 5, Matches: 5, Mismatches: 0 | + | |
</ | </ | ||
- | MK Node Verify: | + | |
+ | Verify | ||
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
- | [test 0] MATCH | + | |
- | [test 1] MATCH | + | |
- | [test 2] MATCH | + | |
- | [test 3] MATCH | + | |
- | Total: 4, Matches: 4, Mismatches: 0 | + | |
</ | </ | ||
- | RM Node Verify: | + | |
+ | Remove all compiled binaries: | ||
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
- | [test 0] MATCH | + | |
- | [test 1] MATCH | + | |
- | Total: 2, Matches: 2, Mismatches: 0 | + | |
</ | </ | ||
- | ====Another set of useful commands are:==== | + | Make and print errors immediately: |
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
</ | </ | ||
- | //Make help displays all available options for the Make command// | ||
+ | Submit assignment: | ||
<cli> | <cli> | ||
- | USERNAME@lab46: | + | USERNAME@lab46: |
</ | </ | ||
- | //Make check will help you verify | + | |
+ | Update project (if any verify scripts/etc changed) | ||
+ | < | ||
+ | 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 | ||
+ | |||
+ | Also, use the 'make clean' command before running ' |