vote up 0 vote down star

Let say I have 5 small piece of codes in C. Every time I want to test each piece of code, I have to repeat this process:

#include <stdio.h>
int main()
{
   // code piece go into here
   return 0;
}

Is there way that I don't have to do this 5 times? I'm using Code::Blocks, that means I have to create 5 different projects, which I believe not necessary because each piece of code is small.

flag

I use a (shell) script that generates template files for any code I need to write. But my C template does not include 'main()' because I can type 'int main(int argc, char **argv) { ...; return(0); }' fast enough that it doesn't worry me. It's good to save effort, but the effort saved here is rather minimal. My template includes boilerplate comments for the VCS I use, etc. My test code is usually surrounded by #ifdef TEST and #endif, too. – Jonathan Leffler Oct 24 at 7:45

4 Answers

vote up 0 vote down check

Use a good editor with code templates. Most feature-full editors (Emacs, vi, Scite, Textmate, or even MSVC if that's your cup of tea) have some support for them. This way, writing this boring template every time will take only a fraction of the second.

link|flag
Thanks, this helps! – tsubasa Oct 24 at 11:03
vote up 0 vote down

Would template files or copying and pasting be too difficult for some reason?

link|flag
In C, is there template? Please show me an example if u can. Thanks much. – tsubasa Oct 23 at 23:18
1  
I believe the templates in question would be a feature of your editor... you could have a template for a header file, another for an entry point (including your main function), etc. When you creat a new file, your editor pre-populates it with the configured template. – grossvogel Oct 23 at 23:22
vote up 0 vote down

There must be many ways ...

You could put your test codes each in separate files wrapped with a fixed function name

void my_test_code( void )
{
    /* code here */
}

Files called testa.c, testb.c, etc. Compile those.

Then separately compile your main once somewhere nearby

void my_test_code( void );

int main()
{
    my_test_code( );
    return 0;
}

Then link your main.o and testa.o to form the testa executable. And so on.

I'm not saying I'd do it this way myself though - just food for thought.

link|flag
vote up 2 vote down

Is this really so hard? Every program you run needs a main function, and the text you've pasted there isn't very long. Also, people expect to see a main function in C/C++ programs. If you template this out somehow, you're just going to make your code confusing.

If the issue is that you have to make a project for every test you want to build, then I would guess you are not using your IDE correctly. Is there not a multi-target project type that lets you have multiple test programs without all the extra project files? If there is not, then perhaps you should be using a different IDE.

link|flag
Yes, multi-target project is something that i'm really looking for. Anybody knows how to do it in Code::Blocks? – tsubasa Oct 23 at 23:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.