Difference between revisions of "BTP300B A2 Team 2 Bugs Report"

From CDOT Wiki
Jump to: navigation, search
(Created page with '<-- Go Back == <u>'''Accomplishments'''</u> == <u>''' Week 2: Oct 13 - 19 '''</u> * Wednesday: meeting and deciding what part each of the team me…')
 
Line 29: Line 29:
  
 
<u>''' Week 4: Oct 27 - Nov 2'''</u>
 
<u>''' Week 4: Oct 27 - Nov 2'''</u>
* Monday:
+
* Monday: The code below causing segmentation fault.
 +
** This line calls release function from consolebackup.cpp:
 +
 
 +
release((void**)message);
 +
 
 +
 
 +
'''FIX:'''
 +
 
 +
release((void**)&message);

Revision as of 22:28, 28 October 2013

<-- Go Back

Accomplishments

Week 2: Oct 13 - 19

  • Wednesday: meeting and deciding what part each of the team members will do


Week 3: Oct 20 - 26

  • Friday:
    • All team members finished their coding tasks.
    • Meeting in order to decide what will be the future steps.
    • Future steps are:
      • Due to segmentation fault during testing we decided that each of team members will test at home in order to find what causes the fault.


Week 4: Oct 27 - Nov 2

  • Monday:
    • The cause for the segmentation fault was found (will be presented in the bug report below).
    • The fix was shared between team members using SVN for future testing and improving of the program.
    • So far, our code compiles, executes, but the output we get does not looks exactly like required.


Bugs/Problems

Week 3: Oct 20 - 26

  • Friday:


Week 4: Oct 27 - Nov 2

  • Monday: The code below causing segmentation fault.
    • This line calls release function from consolebackup.cpp:

release((void**)message);


FIX:

release((void**)&message);