Difference between revisions of "Team 3 Bugs Report"

From CDOT Wiki
Jump to: navigation, search
(Accomplishments)
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[BTP300B Teams (Fall 2013)|<-- Go Back]]
 
[[BTP300B Teams (Fall 2013)|<-- Go Back]]
 
  
 
== <u>'''Bugs/Problems'''</u> ==
 
== <u>'''Bugs/Problems'''</u> ==
Line 6: Line 5:
  
 
<u>''' Week 3 - Sept 16 - 22 '''</u>
 
<u>''' Week 3 - Sept 16 - 22 '''</u>
  - forgot about using -lncurses so was getting multiple compile errors on Matrix
+
* forgot about using -lncurses so was getting multiple compile errors on Matrix
 +
 
  
 
<u>''' Week 4 - Sept 23 - 29 '''</u>
 
<u>''' Week 4 - Sept 23 - 29 '''</u>
  -
+
* Allocated memory for local copy of ''str'' in the '''edit()''' function. Memory allocated (by calling '''new''') was based on length of original string. After inserts into the local copy, memory was therefore corrupted and '''delete []''' was failing. The memory allocation was changed to be based on ''maxStrLength'' which is passed in to '''edit()'''. This fixed the problem.
 +
* Was getting warnings from Borland compiler regarding the mixed use of signed and unsigned variables. This was fixed in the code.
 +
* cl command was giving a warning which was resolved with the use of the /EHsc option at the end of the command
 +
* After typing/deleting a character in the entry field, the screen was not updated properly. This was due to the fact that ''strOffset'' and ''curPosition'' were not incremented/decremented properly
 +
* The "application" had a runtime segmentation fault. This was because the string buffer was not allocated large enough.
 +
 
 +
 
  
 
== <u>'''Accomplishments'''</u>  ==
 
== <u>'''Accomplishments'''</u>  ==
Line 15: Line 21:
  
 
<u>''' Week 3 - Sept 16 - 22 '''</u>
 
<u>''' Week 3 - Sept 16 - 22 '''</u>
  - display() function has been completed.
+
* '''display()''' function has been completed.
 +
 
  
 
<u>''' Week 4 - Sept 23 - 29 '''</u>
 
<u>''' Week 4 - Sept 23 - 29 '''</u>
  - overall structure for edit() was discussed
+
* overall structure for '''edit()''' was discussed
  - started coding some of the functions that edit() calls
+
* started coding some of the functions that '''edit()''' calls
  - majority of these functions have been completed
+
* majority of these functions have been completed
  - testing in progress
+
* testing in progress
 +
* minor changes were made to function signatures after team review
 +
* testing is complete
 +
* finalizing comments before submission
 +
* the "application" was created and tested

Latest revision as of 20:57, 28 September 2013

<-- Go Back

Bugs/Problems

Week 3 - Sept 16 - 22

  • forgot about using -lncurses so was getting multiple compile errors on Matrix


Week 4 - Sept 23 - 29

  • Allocated memory for local copy of str in the edit() function. Memory allocated (by calling new) was based on length of original string. After inserts into the local copy, memory was therefore corrupted and delete [] was failing. The memory allocation was changed to be based on maxStrLength which is passed in to edit(). This fixed the problem.
  • Was getting warnings from Borland compiler regarding the mixed use of signed and unsigned variables. This was fixed in the code.
  • cl command was giving a warning which was resolved with the use of the /EHsc option at the end of the command
  • After typing/deleting a character in the entry field, the screen was not updated properly. This was due to the fact that strOffset and curPosition were not incremented/decremented properly
  • The "application" had a runtime segmentation fault. This was because the string buffer was not allocated large enough.


Accomplishments

Week 3 - Sept 16 - 22

  • display() function has been completed.


Week 4 - Sept 23 - 29

  • overall structure for edit() was discussed
  • started coding some of the functions that edit() calls
  • majority of these functions have been completed
  • testing in progress
  • minor changes were made to function signatures after team review
  • testing is complete
  • finalizing comments before submission
  • the "application" was created and tested