Open GoogleCodeExporter opened 9 years ago
little mistaken
if we try
for(UINT i=0;i<count;i++)ASSERT_EQ(this->signal,this->matr.ave[i]);
it writes
t_test.cpp(69): error: Value of: this->signal==this->matr.ave[i]
Actual: false
Expected: true
and in output panel of VS:
HEAP[ccdTest_Test.exe]: Invalid address specified to RtlValidateHeap( 006A0000,
008C5AE8 )
if we write
BYTE averageArrayHasWrongValues=0;
for(UINT i=0;i<count;i++)if(this->signal==this->matr.ave[i])averageArrayHasWrongValues=1;
averageArrayHasWrongValues=1;
ASSERT_FALSE(averageArrayHasWrongValues);
it also throws exception
FIX IT
Original comment by kolan...@gmail.com
on 23 Nov 2011 at 6:57
Please provide a short but complete program + compiler settings + command line
flags that will allow us to reproduce the issue.
Original comment by vladlosev
on 9 Dec 2011 at 7:48
Original comment by vladlosev
on 9 Dec 2011 at 7:48
Here is an archive containing VS solution, project and source files.
Original comment by kolan...@gmail.com
on 23 Apr 2012 at 4:44
Attachments:
Just build it and run using VS.
Flags are the default ones.
Original comment by kolan...@gmail.com
on 23 Apr 2012 at 4:46
Original issue reported on code.google.com by
kolan...@gmail.com
on 23 Nov 2011 at 6:29