This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
haas:spring2017:cprog:projects:mbe0 [2017/02/08 11:56] – [Project: MENTAL MATH - MULTIPLY BY 11 (mbe0)] wedge | haas:spring2017:cprog:projects:mbe0 [2017/02/15 15:42] (current) – [Total output comparison] wedge | ||
---|---|---|---|
Line 11: | Line 11: | ||
* Added verification section to facilitate project output specification compliance (20170207) | * Added verification section to facilitate project output specification compliance (20170207) | ||
+ | * Added automatic verification subsection to verification section (20170208) | ||
=====Objective===== | =====Objective===== | ||
To implement a programmatic solution (ie simulation) of a real life process- the mental math trick of multiplying any two- or three-digit number by eleven. | To implement a programmatic solution (ie simulation) of a real life process- the mental math trick of multiplying any two- or three-digit number by eleven. | ||
Line 359: | Line 360: | ||
You can repeat this for the other data files (output.73 for an input of 73, etc.) | You can repeat this for the other data files (output.73 for an input of 73, etc.) | ||
+ | |||
+ | ===Isolate just the STDOUT or the STDERR=== | ||
+ | Additionally, | ||
+ | |||
+ | To do this, you can do the following. | ||
+ | |||
+ | To isolate STDOUT and STDERR into separate files, you can do the following: | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | You can then compare those particular collections of information against my copies (located in the **mbe0** subdirectory of the CPROG Public Directory, by the same file names). | ||
+ | ====automated verification==== | ||
+ | I have rigged up **pchk** to work for this project; it will check for differences and compare MD5sum hashes for stderr, stdout, and total (combined) output. | ||
+ | |||
+ | Once you have everything complete, this is a good final check to do to ensure everything is in order. | ||
+ | |||
+ | <cli> | ||
+ | lab46: | ||
+ | =================================================== | ||
+ | = mbe0 output validation check = | ||
+ | =================================================== | ||
+ | stderr diff: MATCH stderr md5sum: MATCH | ||
+ | [ 37] stdout diff: MATCH stdout md5sum: MATCH | ||
+ | output diff: MATCH output md5sum: MATCH | ||
+ | |||
+ | stderr diff: MATCH stderr md5sum: MATCH | ||
+ | [ 73] stdout diff: MATCH stdout md5sum: MATCH | ||
+ | output diff: MATCH output md5sum: MATCH | ||
+ | |||
+ | stderr diff: MATCH stderr md5sum: MATCH | ||
+ | [128] stdout diff: MATCH stdout md5sum: MATCH | ||
+ | output diff: MATCH output md5sum: MATCH | ||
+ | |||
+ | stderr diff: MATCH stderr md5sum: MATCH | ||
+ | [480] stdout diff: MATCH stdout md5sum: MATCH | ||
+ | output diff: MATCH output md5sum: MATCH | ||
+ | |||
+ | stderr diff: MATCH stderr md5sum: MATCH | ||
+ | [907] stdout diff: MATCH stdout md5sum: MATCH | ||
+ | output diff: MATCH output md5sum: MATCH | ||
+ | |||
+ | stderr diff: MATCH stderr md5sum: MATCH | ||
+ | [933] stdout diff: MATCH stdout md5sum: MATCH | ||
+ | output diff: MATCH output md5sum: MATCH | ||
+ | =================================================== | ||
+ | = | ||
+ | =================================================== | ||
+ | lab46: | ||
+ | </ | ||
+ | |||
+ | Since your project submission will be evaluated in part by compliance to output specifications, | ||
=====Reflection===== | =====Reflection===== | ||
Be sure to provide any commentary on your journal regarding realizations had and discoveries made during your pursuit of this project. | Be sure to provide any commentary on your journal regarding realizations had and discoveries made during your pursuit of this project. | ||
Line 370: | Line 425: | ||
* Code must compile cleanly (no warnings or errors) | * Code must compile cleanly (no warnings or errors) | ||
+ | * Again, I will be compiling as follows: gcc -Wall -o mbe0 mbe0.c | ||
* Submit the program in a file called **mbe0.c** | * Submit the program in a file called **mbe0.c** | ||
* Output must be correct, and match the form given in the sample output above. | * Output must be correct, and match the form given in the sample output above. |