User Iulian Șerbănoiu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T22:50:40Zhttp://stackoverflow.com/feeds/user/13136http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1048628/hgignore-syntax-for-ignoring-only-files-not-directories4.hgignore syntax for ignoring only files, not directories?Iulian Șerbănoiu2009-06-26T11:30:40Z2009-11-16T14:11:55Z
<p>Hello,</p>
<p>I have a problem which I can't seem to understand. I'm using TortoiseHg (version 0.7.5) on windows but on linux I have the same problem. Here it is:</p>
<p>My .hgignore file:</p>
<pre><code>syntax: regexp
^[^\\/]+$
</code></pre>
<p>What I'm trying to achieve is to add to the ignore list the files which are in the root of the hg repository.</p>
<p>For example if I have like this:</p>
<pre><code>.hg
+mydir1
+mydir2
-myfile1
-myfile2
-anotherfile1
-anotherfile2
.hgignore
</code></pre>
<p>I want myfile1(2) and anotherfile1(2) to be ignored (names are only for the purpose of this example - they don't have a simple rule that can be put in the hgignore file easily)</p>
<p>Is there something I'm missing because I'm pretty sure that regexp is good (I even tested it)? Ideas?</p>
<p>Is there a simpler way to achieve this? [to add to the ignore list files that are in the root of the mercurial repository]</p>
<p>Thank you,</p>
<p>Iulian</p>
http://stackoverflow.com/questions/1417090/is-there-an-open-source-alternative-to-the-stackoverflow-model1Is there an open source alternative to the stackoverflow model?Iulian Șerbănoiu2009-09-13T07:26:14Z2009-09-13T07:49:32Z
<p>Hello,</p>
<p>I'm interesting in creating a web site similar to stackoverflow. As I'm usually interested in OSS I'd like to know if someone knows about the existence of other Q&A sites whose sources are licensed under an open-source license (not interested which license as long as I can use it - GPL, Apache, BSD, MIT ...).</p>
<p>Thank you,</p>
<p>Iulian</p>
<p>PS: The site would most likely run on a Linux machine with Apache or any other open source web server.</p>
http://stackoverflow.com/questions/1192765/are-there-any-tools-for-verifying-coding-standards1Are there any tools for verifying coding standards?Iulian Șerbănoiu2009-07-28T08:46:52Z2009-07-28T08:49:01Z
<p>Hello,</p>
<p>I'm having some trouble finding a tool for verifying if a code respects certain coding rules.</p>
<p>For example I want to make sure of things like the following:</p>
<ul>
<li>class names start with a C</li>
<li>class member names start with m_</li>
<li>global variables should start with g_</li>
<li>static variables should start with s_</li>
<li>comments should follow the doxygen rules</li>
<li>...</li>
</ul>
<p>Is there a tool that can be customized to meet this requirements? (It doesn't matter if it's open source/free or commercial, though free would be nice ... ).</p>
<p>Even if parts of the requirements can be achieved it would be good.</p>
<p>Thanks for any pointers or ideas,</p>
<p>Iulian</p>
<p>PS: The customizing part is very important as the product may be used for other projects also, projects where the coding standards can be different</p>
http://stackoverflow.com/questions/1156020/must-every-test-case-undo-their-operation-at-the-end2Must every test-case undo their operation at the end?Iulian Șerbănoiu2009-07-20T21:23:22Z2009-07-20T21:43:27Z
<p>Hi,</p>
<p>The question may be a little vague but here's an example of what I want to know (pseudocode):</p>
<pre><code>//start test-case for CreateObject function
{
// initialization of parameters
MyObject *obj = CreateObject();
// test results
}
//end test-case for CreateObject function
</code></pre>
<p>Is it necessary in this case to also deallocate the memory by calling "DestroyObject" function? [this is the particular case that gave birth to this question]</p>
<p>My personal opinion would be no, that I shouldn't undo what the function did, but if many tests would be carried out I could remain without memory/resources for that test-suite (not likely to happen but ...).</p>
<p>What do you think? In this case and also in a general case.</p>
<p>Thanks,</p>
<p>Iulian</p>
http://stackoverflow.com/questions/1116018/is-assert-and-unit-testing-incompatible1Is assert and unit-testing incompatible?Iulian Șerbănoiu2009-07-12T13:09:06Z2009-07-18T19:55:32Z
<p>Hello,</p>
<p>I have some concerns related to the fact of testing some functions containing the assert macro from <a href="http://en.wikipedia.org/wiki/Assert.h" rel="nofollow">assert.h</a>.</p>
<p>If the assert fails the test fails also.
This leaves me with some test cases that will never work.</p>
<p>For example a function instead of indicating failure (return false or something similar) asserts.</p>
<p>Is there a solution for this (unit-testing functions containing assert)?</p>
<p>Thanks,</p>
<p>Iulian</p>
http://stackoverflow.com/questions/1113742/what-are-the-most-cool-and-modern-programming-areas-nowadays/1113929#11139292Answer by Iulian Șerbănoiu for What are the most cool and modern programming areas nowadays?Iulian Șerbănoiu2009-07-11T15:13:20Z2009-07-11T15:13:20Z<p>Telecommunications area in general.
And particularly environments/programming languages supporting it (<a href="http://erlang.org/" rel="nofollow">Erlang</a> for example).</p>
http://stackoverflow.com/questions/1113855/is-the-sizeofenum-sizeofint-always/1113905#11139052Answer by Iulian Șerbănoiu for Is the sizeof(enum) == sizeof(int), always ?Iulian Șerbănoiu2009-07-11T15:03:22Z2009-07-11T15:03:22Z<p>No.</p>
<p>Example: <a href="http://www.codesourcery.com/sgpp" rel="nofollow">The CodeSourcery compiler</a></p>
<p>When you define an enum like this:</p>
<pre><code>enum MyEnum1 {
A=1,
B=2,
C=3
};
// will have the sizeof 1 (fits in a char)
enum MyEnum1 {
A=1,
B=2,
C=3,
D=400
};
// will have the sizeof 2 (doesn't fit in a char)
</code></pre>
<p><a href="http://www.codesourcery.com/archives/arm-gnu/msg02684.html" rel="nofollow">Details</a> from their mailing list</p>
http://stackoverflow.com/questions/1111376/how-to-do-unit-testing-of-methods-involving-file-input-output1How-to do unit-testing of methods involving file input output?Iulian Șerbănoiu2009-07-10T19:00:37Z2009-07-10T20:20:10Z
<p>Hello,</p>
<p>I'm using C++Test from Parasoft for unit testing C++ code.
I came across the following problem. I have a function similar to the next one (pseudocode):</p>
<pre><code>bool LoadFileToMem(const std::string& rStrFileName)
{
if( openfile(rStrFileName) == successfull )
{
if( get_file_size() == successfull )
{
if( read_entire_file_to_buffer() == successfull )
{
return true;
}
return false;
}
return false;
}
return false;
}
</code></pre>
<p>My questions in this case are:</p>
<p>Should I use stubs for file system functions? Or should I include specific sample test files for running the unit tests?</p>
<p>In my case <a href="http://www.cplusplus.com/reference/iostream/fstream/" rel="nofollow">std::fstream</a> class is used for file input.</p>
<p>Has anyone better suggestions? (Best if done in C++Test but not mandatory)</p>
<p>Thank you,</p>
<p>Iulian</p>
http://stackoverflow.com/questions/1064325/why-not-use-pointers-for-everything-in-c/1065958#10659580Answer by Iulian Șerbănoiu for Why not use pointers for everything in C++Iulian Șerbănoiu2009-06-30T20:46:03Z2009-06-30T20:46:03Z<p>Objects created on the stack are created faster than objects allocated.</p>
<p>Why?</p>
<p>Because allocating memory (with default memory manager) takes some time (to find some empty block or even allocate that block).</p>
<p>Also you don't have memory management problems as the stack object automatically destroys itself when out of scope.</p>
<p>The code is simpler when you don't use pointers. If your design allows you to use stack objects, I recommend that you do it.</p>
<p>I myself wouldn't complicate the problem using smart pointers.</p>
<p>OTOH I have worked a little in the embedded field and creating objects on the stack is not very smart (as the stack allocated for each task/thread is not very big - you must be careful).</p>
<p>So it's a matter of choice and restrictions, there is no response to fit them all.</p>
<p>And, as always don't forget to <a href="http://en.wikipedia.org/wiki/KISS%5Fprinciple" rel="nofollow">keep it simple</a>, as much as possible.</p>
http://stackoverflow.com/questions/1012741/code-coverage-percentage-not-good1Code coverage percentage not goodIulian Șerbănoiu2009-06-18T13:51:50Z2009-06-18T17:09:02Z
<p>Hello,</p>
<p>I have installed on my computer C++Test only with UnitTest license (only Unit Test license) as a Visual Studio 2005 plugin ( cpptest_7.2.11.35_win32_vs2005_plugin.exe ).</p>
<p>I have a sample similar to the following:</p>
<pre><code>bool MyFunction(... parameters... )
{
bool bRet = true;
// do something
if( some_condition )
{
// do something
bRet = CallToAFunctionThatCanReturnBothTrueAndFalse....
}
else
{
bRet = false;
// do something
}
if(bRet == false)
{
// do something
}
return bRet;
}
</code></pre>
<p>In my case after running the coverage tool I have the following results (for a function similar to the previously mentioned):</p>
<pre><code>[LC=100 BC=100 PC=75 DC=100 SCC=100 MCDC=50 (%)]
</code></pre>
<p>I really don't understand why I don't have 100% coverage when it comes to PathCoverage (PC).
Also if someone who has experience with C++Test Parasoft could explain the low MCDC coverage for me that would be great.</p>
<p>What should I do to increase coverage? as I'm out of ideas in this case.
Directions to (some parts of) the documentation are welcome.</p>
<p>Thank you,</p>
<p>Iulian </p>
http://stackoverflow.com/questions/758045/how-to-be-able-to-extract-comments-from-inside-a-function-in-doxygen0How to be able to extract comments from inside a function in doxygen?Iulian Șerbănoiu2009-04-16T21:05:30Z2009-04-17T08:45:44Z
<p>I'm interested to know if it is possible to have some comments in a function (c, c++, java) in a way that doxygen could put them in the generated html file.</p>
<p>for example:</p>
<pre><code>function(...)
{
do_1();
/**
* Call do_2 function for doing specific stuff.
*/
do_2();
}
</code></pre>
http://stackoverflow.com/questions/674456/where-is-unicode-version-of-atof-in-windows-mobile/675568#6755680Answer by Iulian Șerbănoiu for Where is Unicode version of atof in Windows MobileIulian Șerbănoiu2009-03-23T23:06:59Z2009-03-23T23:06:59Z<p>If the data you want to convert is guaranteed to be only in the ASCII charset you can always transform it to ASCII and cat atof, atol, atoi & friends.</p>
<p>I mean if you have something like this(pseudocode):</p>
<pre><code>TCHAR buf_T[20]=_T("12345");
char buf_char[20];
from_TCHAR_to_ascii(buf_T,buf_char);
atoi(buf_char);
</code></pre>
http://stackoverflow.com/questions/674635/member-pointer-to-array-element/674838#6748380Answer by Iulian Șerbănoiu for Member pointer to array elementIulian Șerbănoiu2009-03-23T19:17:40Z2009-03-23T19:17:40Z<p>What you want is not possible.</p>
<p>Let's take this example:</p>
<pre><code>#include <iostream>
using namespace std;
typedef struct tagTest
{
int a;
char b;
double c;
bool d;
}Test;
int main()
{
Test a[10];
for(int i=0;i<10;i++)
{
a[i].a = i;
a[i].b = '0'+i;
a[i].c = 1.0+i;
a[i].d = ( (i%2) == 0 ? true : false );
}
cout << "Structure size:" << sizeof(Test) << endl;
return 0;
}
</code></pre>
<p>Let's say you find a method to access the "a" member of the "Test" structure. It means you will have something like a pointer to integer.</p>
<p>You will want to access the "a" member this way: </p>
<pre><code>int *a_pointer;
a_pointer[0] to point to a[0].a
a_pointer[1] to point to a[1].a
....
a_pointer[9] to point to a[9].a
</code></pre>
<p>which is not possible since the memory is not linear (each integer is at sizeof(Test) away from the previous one).</p>
<p>You could create a class and define something similar to iterators, or use some macros to access each member in a index fashion. This is the best method that I can see.</p>
http://stackoverflow.com/questions/661636/socket-behaviour-when-in-blocking-mode1socket behaviour when in blocking modeIulian Șerbănoiu2009-03-19T10:06:05Z2009-03-20T08:14:05Z
<p>I'm interested in the behavior of send function when using a <strong>blocking</strong> socket.</p>
<p>The manual specifies <strong>nothing</strong> about this case explicitly.</p>
<p>From my tests (and documentation) it results that when using send on a blocking socket I have 2 cases:</p>
<ul>
<li>all the data is sent</li>
<li>an error is returned and nothing is sent</li>
</ul>
<p>In lines of code (in C for example) this translate like this:</p>
<pre><code> // everything is allocated and initilized
int socket_fd;
char *buffer;
size_t buffer_len;
ssize_t nret;
nret = send(socket_fd, buffer, buffer_len, 0);
if(nret < 0)
{
// error - nothing was sent (at least we cannot assume anything)
}
else
{
// in case of blocking socket everything is sent (buffer_len == nret)
}
</code></pre>
<p>Am I right?</p>
<p>I'm interested about this behavior on all platforms (Windows, Linux, *nix).</p>
http://stackoverflow.com/questions/625990/are-there-any-reasons-not-to-use-visual-studio-6-for-c/626009#6260090Answer by Iulian Șerbănoiu for Are there any reasons not to use Visual Studio 6 for C++?Iulian Șerbănoiu2009-03-09T12:22:39Z2009-03-09T12:22:39Z<p>Another reason not to use Visual Studio 6 is that it is no longer supported by many open source libraries (ACE framework for example). Also if you use Visual Studio 6 you should apply all the patches because some code it is not compilable without those patches. The template support is not very good.</p>
<p>As a conclusion: I would recommend using modern/newer C++ compilers.</p>
http://stackoverflow.com/questions/517897/anyone-know-any-programming-related-poetry/517902#5179022Answer by Iulian Șerbănoiu for Anyone know any programming related poetry?Iulian Șerbănoiu2009-02-05T21:05:41Z2009-02-05T21:05:41Z<p>Kill dash nine: </p>
<p><a href="http://www.monzy.com/intro/killdashnine_lyrics.html" rel="nofollow">http://www.monzy.com/intro/killdashnine_lyrics.html</a></p>
<p><a href="http://www.youtube.com/watch?v=Fow7iUaKrq4" rel="nofollow">http://www.youtube.com/watch?v=Fow7iUaKrq4</a></p>
http://stackoverflow.com/questions/514981/suggestion-for-template-book-for-c/517788#517788-1Answer by Iulian Șerbănoiu for Suggestion for template book for c++?Iulian Șerbănoiu2009-02-05T20:32:59Z2009-02-05T20:32:59Z<p><a href="http://rads.stackoverflow.com/amzn/click/0201749629" rel="nofollow">Effective STL</a> by Scott Meyers</p>
http://stackoverflow.com/questions/517563/c-c-linker-call16-reloc-at-xxxxx-not-against-global-symbol/517778#5177781Answer by Iulian Șerbănoiu for C/C++ linker CALL16 reloc at xxxxx not against global symbolIulian Șerbănoiu2009-02-05T20:29:58Z2009-02-05T20:29:58Z<p>Try -mlong-calls flag to the compiler.</p>
<p>Also see the <a href="http://linux.die.net/man/1/gcc" rel="nofollow">manual</a> for more specific MIPS options.</p>
http://stackoverflow.com/questions/493741/how-do-you-reward-your-clients-for-good-behaviour/517743#5177430Answer by Iulian Șerbănoiu for How do you reward your clients for good behaviour?Iulian Șerbănoiu2009-02-05T20:22:47Z2009-02-05T20:22:47Z<p>I would offer them a good massage each time they come and leave the firm. They would definetelly come back.</p>
http://stackoverflow.com/questions/517016/moving-forward-with-a-career-c-or-c/517724#5177241Answer by Iulian Șerbănoiu for Moving forward with a career: C++ or C#?Iulian Șerbănoiu2009-02-05T20:19:13Z2009-02-05T20:19:13Z<p>Want to code something safety critical? Learn C++
Want to learn something easier but useful for many desktop applications? Learn C#</p>
<p>I would definetely recommend this order: C++ and after that C#.</p>
http://stackoverflow.com/questions/515480/how-to-set-up-headers-and-libraries-for-linux-development/517669#5176691Answer by Iulian Șerbănoiu for How to set up headers and libraries for Linux development.Iulian Șerbănoiu2009-02-05T20:05:20Z2009-02-05T20:05:20Z<p>check out pkg-config.</p>
<p>For example you can see the libraries installed by tiping: </p>
<pre><code>pkg-config --list-all
</code></pre>
<p>For example to find the compilation flags of the gdk library:</p>
<pre><code>~$ pkg-config --cflags gdk
-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include
~$
</code></pre>
<p>Eventually you will link with the library and you will need also libraries:</p>
<pre><code>~$ pkg-config --libs gdk
-lgdk -lXi -lXext -lX11 -lm -lglib
~$
</code></pre>
<p>Note: you will need the development libraries installed in order to be able to do that.</p>
http://stackoverflow.com/questions/502779/vc-line-graph-example/505056#5050562Answer by Iulian Șerbănoiu for vc++ Line Graph ExampleIulian Șerbănoiu2009-02-02T21:36:59Z2009-02-02T21:36:59Z<p>In MFC:</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/wzc1344s(VS.80).aspx" rel="nofollow">LineTo</a> and also MoveTo from CDC.</p>
<p>And use CPaintDC to draw on the OnPaint event like <a href="http://www.gidforums.com/t-5963.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/503526/image-processing-library-for-c/505017#5050170Answer by Iulian Șerbănoiu for Image Processing Library for C++Iulian Șerbănoiu2009-02-02T21:27:12Z2009-02-02T21:27:12Z<p><a href="http://code.google.com/p/tesseract-ocr/" rel="nofollow">tesseract-ocr</a> ? (Apache License 2.0)</p>
http://stackoverflow.com/questions/503401/how-to-debug-file-change-notifications-obtained-by-findfirstchangenotification/504994#5049940Answer by Iulian Șerbănoiu for How to debug file change notifications obtained by FindFirstChangeNotification?Iulian Șerbănoiu2009-02-02T21:23:22Z2009-02-02T21:23:22Z<p>~pseudocode</p>
<pre><code>HANDLE handles[MAX_HANDLES];
std::string dir_array[MAX_HANDLES];
for i from 0 to MAX_HANDLES:
h[i] = FindFirstChangeNotification(dir_array[i]...);
nCount = MAX_HANDLES;
ret = WaitForMultipleObjects(handles, nCount ...);
// check if ret returns something between WAIT_OBJECT_0 and WAIT_OBJECT_0+nCount-1
if "so":
ret -= WAIT_OBJECT_0;
cout << "Directory " << dir_array[ret] << " changed" << endl;
</code></pre>
<p>See: <a href="http://msdn.microsoft.com/en-us/library/ms687025" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms687025</a>(VS.85).aspx</p>
http://stackoverflow.com/questions/453372/writing-function-definition-in-header-files-c/453394#4533940Answer by Iulian Șerbănoiu for Writing function definition in header files - C++Iulian Șerbănoiu2009-01-17T14:49:04Z2009-01-17T14:49:04Z<p>It depends on the coding standards that apply in your case but:</p>
<p>Small functions without loops and anything else should be inlined for better performance (but slightly larger code - important for some constrained or embedded applications).</p>
<p>If you have the body of the function in the header you will have it by default inline(d) (which is a good thing when it comes to speed).</p>
<p>Before the object file is created by the compiler the preprocessor is called (-E option for gcc) and the result is sent to the compiler which creates the object out of code.</p>
<p>So the shorter answer is:</p>
<p>-- Declaring functions in header is good for speed (but not for space) --</p>
http://stackoverflow.com/questions/450666/how-source-control-management-interworking-can-be-achieved3How source control management interworking can be achieved?Iulian Șerbănoiu2009-01-16T15:07:35Z2009-01-17T10:36:31Z
<p>While related questions have been asked before I would like to see an idea about how interoperability between two source control management (SCM) systems can be done. For example we could consider any SCM out there (Mercurial, Git, SVN, CVS, Perforce, ClearCase ...). </p>
<p>Mainly I'm interested if ClearCase can be used along with SVN or Git/Mercurial.</p>
<p>How can I have a remote ClearCase maintained source tree maintained by another SCM also (beside ClearCase)?</p>
<p>While others can use ClearCase we would like to use the 'other' SCM and commit changes in that repository. Changes in ClearCase repository should follow shortly or periodically (and also updating from ClearCase repository should be periodically in order to make sure we're having the latest sources)</p>
<p>Any (others/related) examples/experiences are welcome. Thanks !</p>
<p>PS: This is <em>not</em> about dumping ClearCase (I would do that gladly), it's about working with two source controls at the same time on the same source tree.</p>
http://stackoverflow.com/questions/439219/how-to-make-a-single-static-library-from-multiple-static-libraries4How to make a single static library from multiple static libraries?Iulian Șerbănoiu2009-01-13T14:55:03Z2009-01-14T17:09:17Z
<p>Hello everyone,</p>
<p>We recently converted a C++ project from Visual Studio 6 to Visual Studio 8. Everything went well until we reached the compilation of a project who put all the static libraries inside one big static library. By default after the conversion between the two version of projects the project didn't do anything (no big static library was created, it only said that the project was up-to-date).</p>
<p>We found a working solution by adding a dummy (empty) file to the project (it had no other files before, in the Visual Studio 6 solution). Everything went well and we managed to compile the project with the new development environment (Visual Studio 8).</p>
<p>My question is: Is there any other way to do this, without dummy files added to the project?</p>
<p>Thanks in advance for your responses</p>
http://stackoverflow.com/questions/439219/how-to-make-a-single-static-library-from-multiple-static-libraries/442435#4424350Answer by Iulian Șerbănoiu for How to make a single static library from multiple static libraries?Iulian Șerbănoiu2009-01-14T09:49:25Z2009-01-14T09:49:25Z<p>Unfortunately this is not e very good option in our case because we have different configuration and each lib changes directory (eg: In the debug version is in the debug directory, in the release version is in the release directory). So doing this is out of the question due to the configurations we use. It would be too complicated to maintain the project this way.</p>
http://stackoverflow.com/questions/95380/is-repairing-bugs-created-by-other-people-in-the-company-a-good-way-for-software0Is repairing bugs created by other people in the company a good way for software development?Iulian Șerbănoiu2008-09-18T18:32:07Z2008-12-30T15:43:38Z
<p>I'm asking this because I'm currently in the position of fixing bugs that are found in modules written by other people who are <em>still</em> working in the company.</p>
<p>My personal belief is that everyone should clean their own mess because they know better what they wanted to do in those modules, and usually if someone from "outside" comes and modifies the modules it might not be the best solution.</p>
<p>Also the quality of the code is not something that I should be proud of ... no diagrams, no smart containers (only primitive data types in many parts), no UML ... so this leaves me, the cross platform (win32, embedded-arm) application and the debugger(s).</p>
<p>Should I quit/find something else? Is this wasted time?</p>
<p>I also raised this problem some months ago but nothing was done to fix this way of working.</p>
<p>I must admit that the first months were interesting and I really learned a lot.</p>
<p>I really need some good opinions on this. [Thanks for reading]</p>
http://stackoverflow.com/questions/341817/is-there-a-replacement-for-unistd-h-for-windows-visual-c/341987#3419871Answer by Iulian Șerbănoiu for is there a replacement for unistd.h for Windows (Visual C)?Iulian Șerbănoiu2008-12-04T20:40:41Z2008-12-04T20:40:41Z<p>Create your own unistd.h header and include the needed headers for function prototypes.</p>
http://stackoverflow.com/questions/619467/macro-to-replace-c-operator-new/1365402#1365402Comment by Iulian Șerbănoiu on Macro to replace C++ operator newIulian Șerbănoiu2009-11-06T08:46:15Z2009-11-06T08:46:15Zvery very smart
If I think again you could do something like:
#define new PrepareNew(<b>FILE</b>,<b>LINE</b>, other ... parameters); new
#define delete PrepareDelete( .... ); delete
You could implement this to be thread safe without any hasslehttp://stackoverflow.com/questions/1417090/is-there-an-open-source-alternative-to-the-stackoverflow-model/1417135#1417135Comment by Iulian Șerbănoiu on Is there an open source alternative to the stackoverflow model?Iulian Șerbănoiu2009-09-13T10:24:46Z2009-09-13T10:24:46ZThe site will not have any commercial purposes, so I'm not interested in a commercial solution that involves some costs.http://stackoverflow.com/questions/1417090/is-there-an-open-source-alternative-to-the-stackoverflow-model/1417092#1417092Comment by Iulian Șerbănoiu on Is there an open source alternative to the stackoverflow model?Iulian Șerbănoiu2009-09-13T10:18:05Z2009-09-13T10:18:05ZIt actually doesn't matter. I don't find SO's model an absolute must. Thank youhttp://stackoverflow.com/questions/1192765/are-there-any-tools-for-verifying-coding-standards/1192777#1192777Comment by Iulian Șerbănoiu on Are there any tools for verifying coding standards?Iulian Șerbănoiu2009-07-28T09:02:10Z2009-07-28T09:02:10ZThanks, my search was lousy.http://stackoverflow.com/questions/1111376/how-to-do-unit-testing-of-methods-involving-file-input-output/1111628#1111628Comment by Iulian Șerbănoiu on How-to do unit-testing of methods involving file input output?Iulian Șerbănoiu2009-07-11T14:56:53Z2009-07-11T14:56:53ZI have tests for dynamic allocation - fail/(not fail) which forces the test to fail in case something is wrong with the code.[leave this one out please :) - it is handled]http://stackoverflow.com/questions/1111376/how-to-do-unit-testing-of-methods-involving-file-input-output/1111603#1111603Comment by Iulian Șerbănoiu on How-to do unit-testing of methods involving file input output?Iulian Șerbănoiu2009-07-10T19:59:35Z2009-07-10T19:59:35ZIt's a start. Hope I'll manage to do this in C++Testhttp://stackoverflow.com/questions/1111376/how-to-do-unit-testing-of-methods-involving-file-input-output/1111628#1111628Comment by Iulian Șerbănoiu on How-to do unit-testing of methods involving file input output?Iulian Șerbănoiu2009-07-10T19:55:32Z2009-07-10T19:55:32ZYou are correct, but the buffer is dynamically allocated to be equal to the size of the file. I simplified the problem a little [I have stubs for allocating memory - but C++Test doesn't help me making stubs for fstream class methods].http://stackoverflow.com/questions/1111376/how-to-do-unit-testing-of-methods-involving-file-input-output/1111418#1111418Comment by Iulian Șerbănoiu on How-to do unit-testing of methods involving file input output?Iulian Șerbănoiu2009-07-10T19:28:16Z2009-07-10T19:28:16ZYes, but maybe we want to "simulate" some errors that do not occur always when using files. I guess that sometimes some errors are impossible to simulate with a <i>real</i> filesystem.http://stackoverflow.com/questions/1048628/hgignore-syntax-for-ignoring-only-files-not-directories/1063236#1063236Comment by Iulian Șerbănoiu on .hgignore syntax for ignoring only files, not directories?Iulian Șerbănoiu2009-06-30T12:50:14Z2009-06-30T12:50:14ZThanks a lot, it confirms my beliefs.http://stackoverflow.com/questions/1028588/copying-a-text-file-cComment by Iulian Șerbănoiu on copying a text file- c++Iulian Șerbănoiu2009-06-22T17:58:17Z2009-06-22T17:58:17Zshow us the codehttp://stackoverflow.com/questions/1012741/code-coverage-percentage-not-good/1012921#1012921Comment by Iulian Șerbănoiu on Code coverage percentage not goodIulian Șerbănoiu2009-06-18T14:41:34Z2009-06-18T14:41:34Z@Pete Kirkham There are 4 theoretical paths (in my sample function), and only 3 of them are possible. See the link given by Pete TerMaat for more details about coverage.http://stackoverflow.com/questions/1012741/code-coverage-percentage-not-good/1012980#1012980Comment by Iulian Șerbănoiu on Code coverage percentage not goodIulian Șerbănoiu2009-06-18T14:39:05Z2009-06-18T14:39:05ZNot related to this question but it's a good point of view. BTW I'm just unit testing existing code, which cannot be modified while tests are being written.http://stackoverflow.com/questions/1012741/code-coverage-percentage-not-good/1012844#1012844Comment by Iulian Șerbănoiu on Code coverage percentage not goodIulian Șerbănoiu2009-06-18T14:22:54Z2009-06-18T14:22:54ZI think this <a href="http://www.bullseye.com/coverage.html#basic_path" rel="nofollow">bullseye.com/coverage.html#basic_path</a> is a good example about what PathCoverage (PC) means. This means that indeed the C++Test doesn't eliminate the "impossible" cases.http://stackoverflow.com/questions/1012741/code-coverage-percentage-not-good/1012797#1012797Comment by Iulian Șerbănoiu on Code coverage percentage not goodIulian Șerbănoiu2009-06-18T14:10:16Z2009-06-18T14:10:16ZI did all the possible test cases. The line coverage (LC) and the block coverage (BC), the decision coverage (DC) simple condition converage(SCC) is 100% as you can see.
The only problem is Path Coverage (PC) and MCDC (Modified Condition, Decision Coverage) are not 100% though I tested all the cases. This is why I think that this is somehow a sort of bug of C++Test.http://stackoverflow.com/questions/1012741/code-coverage-percentage-not-good/1012775#1012775Comment by Iulian Șerbănoiu on Code coverage percentage not goodIulian Șerbănoiu2009-06-18T14:05:19Z2009-06-18T14:05:19ZI know what you are saying but my guess is that C++Test does not eliminate some cases that are not possible. For example you cannot execute the "else" part without executing the last "if". Probably this case is not removed by C++Test from the list of possibilities.