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:45] – [Expected Results] 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 is an edit of 2 Makefiles. | + | <cli> |
- | + | lab46:~/src/data/dls0$ make use-your-own-code | |
- | If you'd like to do this: | + | Local node/ |
- | + | lab46:~/src/ | |
- | Edit **src/node/Makefile** and **src/list/Makefile**, at the bottom of both files you'll see: | + | </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. |