This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:fall2014:data:projects:dls0 [2014/11/06 12:39] – [stack testing applications] wedge | haas:fall2014:data:projects:dls0 [2014/11/19 14:42] (current) – [Errata] wedge | ||
---|---|---|---|
Line 17: | Line 17: | ||
* missing double newline after certain " | * missing double newline after certain " | ||
* Some additional aesthetic enhancements to the base Makefile were made. | * Some additional aesthetic enhancements to the base Makefile were made. | ||
+ | * __revision 2__: Makefile enhancements to facilitate project usage (20141107) | ||
+ | * test reference implementation feature enhancements | ||
+ | * a slight change to the option to enable (**make use-test-reference**) | ||
+ | * a new option to restore your own code (**make use-your-own-code**) | ||
+ | * **src/ | ||
+ | * **testing/ | ||
+ | * __revision 3__: verify-stack.sh enhancements (20141119) | ||
+ | * now includes absolute totals | ||
=====Objective===== | =====Objective===== | ||
Line 226: | Line 234: | ||
===Using the test reference implementation=== | ===Using the test reference implementation=== | ||
- | You'll notice that, upon running **make help** in the base-level Makefile, the following new option appears | + | You'll notice that, upon running **make help** in the base-level Makefile, the following new options appear |
<cli> | <cli> | ||
** ** | ** ** | ||
- | ** make test-reference | + | ** make use-test-reference |
+ | ** make use-your-own-code | ||
** ** | ** ** | ||
</ | </ | ||
- | In order to make use of it, you'll need to run **make test-reference** from the base of your **dls0** project directory, as follows: | + | In order to make use of it, you'll need to run **make |
<cli> | <cli> | ||
- | lab46: | + | lab46: |
make[1]: Entering directory '/ | make[1]: Entering directory '/ | ||
make[2]: Entering directory '/ | make[2]: Entering directory '/ | ||
Line 279: | Line 288: | ||
... | ... | ||
</ | </ | ||
- | |||
- | ===Caveats=== | ||
- | **__NOTE__: | ||
- | |||
- | You can tell from the compile output if it is in place (none of the individual node or list library source files get built, only the libraries themselves are assembled). | ||
- | |||
- | And again, clearing out the test reference implementation is as easy as running **make clean**; if you have a working node and list implementation (from successfully completing the prerequisite project(s)), | ||
- | |||
- | This could also be a good way to verify that your node and list implementations are up to par, as you can now run the unit tests and verification scripts against your implementation, | ||
**__Debugging__: | **__Debugging__: | ||
- | ===Keeping Reference Implementation Longer Term=== | + | ===Reverting back to using your code=== |
- | Let's say, for whatever reason, | + | If you were trying out the reference implementation |
- | + | ||
- | This is possible, and all it involves | + | |
- | If you'd like to do this: | + | < |
- | + | lab46:~/src/data/dls0$ make use-your-own-code | |
- | Edit **src/node/Makefile** and **src/list/Makefile**, at the bottom of both files you'll see: | + | Local node/ |
- | + | lab46:~/src/ | |
- | < | + | </cli> |
- | clean: | + | |
- | rm -f *.swp *.o $(OBJ) core | + | |
- | </ | + | |
- | + | ||
- | Let's say you want to keep all of the reference implementation around for both node and list. To do that, change the **clean** rule in both files as follows: | + | |
- | + | ||
- | < | + | |
- | clean: | + | |
- | rm -f *.swp core | + | |
- | </code> | + | |
- | + | ||
- | We basically removed any and all references to the compiled object files " | + | |
- | + | ||
- | This isn't something I would consider a recommended action- it really would only be useful for those who have not successfully completed prior projects, and are looking to not fall further behind. If you've got a working node and list implementation (and it passes all the unit test and verification scripts), use yours. | + | |
====List Library unit tests==== | ====List Library unit tests==== | ||
As a result of the required changes to **display()** and the incorporation of **qty**, pertinent list unit tests will be enhanced, so you can make use of them to ensure implementation compliance. | As a result of the required changes to **display()** and the incorporation of **qty**, pertinent list unit tests will be enhanced, so you can make use of them to ensure implementation compliance. | ||
Line 362: | Line 346: | ||
To assist you in verifying a correct implementation, | To assist you in verifying a correct implementation, | ||
+ | ====node library==== | ||
+ | Here is what you should get for node: | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | ==================================================== | ||
+ | = Verifying Doubly-Linked Node Functionality | ||
+ | ==================================================== | ||
+ | [mknode] Total: | ||
+ | [cpnode] Total: | ||
+ | [rmnode] Total: | ||
+ | ==================================================== | ||
+ | | ||
+ | ==================================================== | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | As no coding changes were needed in the node library, these results should be identical to that of a fully functioning node implementation from the **dll0** project. | ||
+ | |||
+ | ====list library==== | ||
+ | Here is what you should get for list: | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | ==================================================== | ||
+ | = Verifying Doubly-Linked List Functionality | ||
+ | ==================================================== | ||
+ | [mklist] Total: | ||
+ | [cplist] Total: | ||
+ | [rmlist] Total: | ||
+ | [append] Total: | ||
+ | [insert] Total: | ||
+ | [obtain] Total: | ||
+ | | ||
+ | [findnode] Total: | ||
+ | [sortlist] Total: | ||
+ | [swapnode] Total: | ||
+ | ==================================================== | ||
+ | | ||
+ | ==================================================== | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | Due to the re-introduction of **qty** into list (impacting actions performed by **mklist()**, | ||
+ | |||
+ | Remember though- aside from the minor change of adding **qty** and enhancing **display()**, | ||
+ | |||
+ | ====stack library==== | ||
+ | Here is what you should get for stack: | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | =================================================== | ||
+ | = | ||
+ | =================================================== | ||
+ | [mkstack] Total: | ||
+ | [cpstack] Total: | ||
+ | [rmstack] Total: | ||
+ | | ||
+ | [pop] Total: | ||
+ | | ||
+ | [isempty] Total: | ||
+ | =================================================== | ||
+ | [RESULTS] Total: 106, Matches: 106, Mismatches: | ||
+ | =================================================== | ||
+ | lab46: | ||
+ | </ | ||
=====Submission Criteria===== | =====Submission Criteria===== | ||
To be successful in this project, the following criteria must be met: | To be successful in this project, the following criteria must be met: |