views:

139

answers:

2

I'm working on an old variant of unix (qnx 4.x to be exact). I'm trying to shoe-horn in modern software methodologies atop 20+ year old technology. In short I need a unit testing framework for QNX.

Keep in mind we've got a bare bones C compiler and that's pretty much it. Anyone got any suggestions on how I can unit test this beast?

+3  A: 

CuTest

Cogsy
A: 
bool doTest(int(*myFunc)(int))
{
  printf("Testing...\n");
  printf("...testing complete.\n");
  printf("Test passed!\n");
}
samoz