Tagged Questions

122
votes
28answers
23k views

Unit Testing C Code

I worked on an embedded system this summer written in straight C. It was an existing project that the company I work for had taken over. I have become quite accustomed to writing unit tests in Java ...
24
votes
13answers
2k views

How do you introduce unit testing into a large, legacy (C/C++) codebase?

We have a large, multi-platform application written in C. (with a small but growing amount of C++) It has evolved over the years with many features you would expect in a large C/C++ application: ...
19
votes
7answers
935 views

Unit testing real-time / concurrent software

The classical unit testing is basically just putting x in and expecting y out, and automating that process. So it's good for testing anything that doesn't involve time. But then, most of the ...
18
votes
8answers
2k views

Test Automation with Embedded Hardware

Has anyone had success automating testing directly on embedded hardware? Specifically, I am thinking of automating a battery of unit tests for hardware layer modules. We need to have greater ...
17
votes
10answers
2k views

How to simulate memory allocation errors

My C application uses 3rd libraries, which do their own memory management. In order to be robust, my application has code to deal with failures of library functions due to lack of free memory. I ...
13
votes
3answers
1k views

Basic unit test and C, how do I get started?

After reading quite some threads here at StackOverflow, I have come to the conclusion that I should adopt to some form of test driven development/unit test (or at least explore the area). And since ...
12
votes
8answers
811 views

How to write unit tests in plain C?

I've started to dig into the GLib documentation and discovered that it also offers a unit testing framework. But how could you do unit tests in a procedural language? Or does it require to program OO ...
11
votes
2answers
215 views

Which C unit test framework?

I have just began a new C project, using gcc (currently 4.5.2). Now, before it grows too big, I want to start unit testing it. After some googling I've realized that there are numerous of frameworks ...
9
votes
4answers
1k views

Unit testing patterns for microcontroller C code

Although there are plenty of unit test frameworks that support C, I'm a little stumped on how to write unit tests for micro controller code (PIC in my case, but I think the question is more general ...
9
votes
2answers
762 views

Is it overkill to run the unit test with Valgrind?

Just some days ago I started looking into a unit test framework called check, and I intend to run the test on c code under Linux. Now check and some well designed code and some test code can help ...
8
votes
1answer
93 views

Is it possible to use Python based Unit Test frameworks and runners, to test C Code

Python based Unit test Frameworks like "nose" have a lot of rich features, i wonder if we can leverage them to test C Code.
7
votes
1answer
51 views

C function call and parameter tracing - test case and mock generation

I have a large code base of quite old C code on an embedded system and unfortunately there are no automated test cases/suites. This makes restructuring and refactoring code a dangerous task. Manually ...
7
votes
1answer
116 views

Unit test on program which has lots of macros

Recently, I need to add unit test to one legacy program. But in it, there are lots of macros, like #ifdef CONFIG_XXX do xxx #endif #ifdef CONFIG_YYY do yyy #endif Currently, the generic program ...
7
votes
1answer
126 views

Trying to make close sleep on Linux

I need to investigate/test the behavior of some code on Linux under conditions where close might be interrupted by signal handlers (either with or without SA_RESTART). What is the most convenient ...
7
votes
11answers
2k views

UnitTest how do you organise your testing files?

Currently, I am splitting all my tests by package (projects). So if I have 12 projects, I will create 1 more project for Unit Test with 12 classes that will test all my package. Do you do the same ...
7
votes
7answers
4k views

How to test C Code

How do you perfom Unit-Test like tests in C? Which framework or do you do other Tests as Unit-Tests on code level?
6
votes
2answers
104 views

Function mocking (for testing) in C?

I would like to write tests for a C library, in C. I'd like to mock out some functions for the test. Suppose my library is compiled from the following source: /* foo.h */ int myfunction(int x, int ...
6
votes
3answers
204 views

Is there a way to test that a pointer's memory allocation has been freed?

Is there a way to tell that a pointer's memory assignment has been deallocated? I am just starting out in C and I think I am finally starting to understand the intricacies of memory management in C. ...
6
votes
5answers
370 views

How to test reliability of my own (small) embedded operating system?

I've written a small operating system for embedded project running on small to medium target. I added some automated unit test with a high test code coverage (>95%), but the scope is only the static ...
6
votes
2answers
1k views

Easiest way of unit testing C code with Python

I've got a pile of C code that I'd like to unit test using Python's unittest library (in Windows), but I'm trying to work out the best way of interfacing the C code so that Python can execute it (and ...
6
votes
2answers
408 views

Unit Testing - How to go about it?

I want to unit test my program (in C) because I know of the benefits of doing so as well, as it shows where the problem is. I also like to blackbox test, since it tells me if the program works (at ...
6
votes
7answers
2k views

How to test a static function

As applying unit-test to some C code, we run into a problem that some static function can not be called at the test file, without modifying the source code. Is there any simple or reasonable way to ...
5
votes
2answers
170 views

How can I unit test a managed wrapper around C code?

I will be creating a Managed-C++ wrapper around some C functions to allow its use in other .NET solutions. I'm looking at providing a very minimalist wrapper, something like: Signature in C header: ...
5
votes
2answers
131 views

C Unit Testing Framework

I am new to C programming I have been programming in Java for a few years now. I am trying to find a framework for unit testing a C program, preferable a cross platform framework. Ideally the ...
5
votes
1answer
229 views

Replacing and then opening stdin/stdout over ssh

I'm working on a system that communicates with child processes using pipes to stdin and stdout. The child processes use a api library to facilitate this communication and I need to write unit tests ...
5
votes
3answers
171 views

How to stub a socket in C?

I've written client code that's supposed to send some data through a socket and read back an answer from the remote server. I would like to unit-test that code. The function's signature is something ...
5
votes
3answers
305 views

Code coverage tools for C

I am using CuTest for unit testing and would like to get information about code coverage. Are there any code coverage tools available for C? Thanks
5
votes
2answers
206 views

How to begin writing unit tests for a legacy Embedded C application - very tightly coupled modules?

I am currently working on a code base, that has never had any unit tests written on it. It has been written for a 16-bit Embedded processor, and I would like to start to add unit tests for all the ...
5
votes
4answers
214 views

What's your recommandation for C Unit Testing Framework?

The framework should be as portable as possible. Thank you! Later Edit: If possible I am looking for something similar (as approach) with Java's Junit.
5
votes
7answers
504 views

How would you unittest a memory allocator?

There's a lot of people today who sell unittesting as bread-and-butter of development. That might even work for strongly algorithmically-oriented routines. However, how would you unit-test, for ...
4
votes
1answer
31 views

How does one unit test handling of the error conditions for Python/C APIs like PyType_Ready and PyObject_New?

It's fairly straightforward (if tedious) to unit test Python extension modules written in C, including the error cases for many of the Python/C APIs such as PyArg_ParseTuple. For example, the ...
4
votes
3answers
124 views

how to unit test c (with the help of code blocks)?

I have a task of unit testing C project for homework It's written in Code Blocks. Here's one example from the code: void ServerUserWrite(int Command) //Command "1" prints an extra row into server. ...
4
votes
2answers
147 views

Seeking C unit test system

It has been a few years since I coded any C (or C++) and now I have to code an application to run on a micro-controller. Development will be on a Windows 7, 64-bit PC, which is where the unit tests ...
4
votes
1answer
146 views

How can we apply a non-vararg function over a va_list?

Backstory I'm porting the QuickCheck unit test framework to C (see the working code at GitHub). The syntax will be: for_all(property, gen1, gen2, gen3 ...); Where property is a function to test, ...
4
votes
5answers
136 views

C Unit Testing - Returning from a stubbed graceful exit routine

Here is the scenario I've got. The function I'm testing has an error condition that, if hit, calls a graceful exit function to free any global memory, close handles, and exit the program. Obviously, ...
4
votes
1answer
225 views

OpenGL How to unit test?

Is there a good way to unit test a function or a class using OpenGL commands? For c++, I know I could make the class a template and pass a class doing direct opengl calls : namespace myNamespace { ...
4
votes
6answers
547 views

C embedded automatic unit test generation

Is there any SW to generate unit tests in C and embedded applications? The reason I am asking is that my boss told me he heard from someone that "You need a tool to analyze the code and create 80% of ...
4
votes
6answers
855 views

Automatically generate table of function pointers in C

I'm looking for a way to automatically (as part of the compilation/build process) generate a "table" of function pointers in C. Specifically, I want to generate an array of structures something like: ...
4
votes
6answers
1k views

Unit testing for failed malloc()

What is the best way for unit testing code paths involving a failed malloc()? In most instances, it probably doesn't matter because you're doing something like thingy *my_thingy = ...
4
votes
6answers
1k views

How do I mock objects without inheritance (in C)?

We use a simple object model for our low level networking code at work where struct pointers are passed around to functions which are pretending to be methods. I've inherited most of this code which ...
4
votes
3answers
851 views

Unit Testing Frameworks for C [closed]

Possible Duplicate: Unit Testing C Code I've seen a few questions specific to C++, but I'm really curious about C. I'm trying to add a standard unit test framework into our build ...
4
votes
8answers
3k views

Unit testing error conditions - EINTR

In short, how do you unit test an error condition such as EINTR on a system call. One particular example I'm working on, which could be a case all by itself, is whether it's necessary to call fclose ...
3
votes
2answers
70 views

Defacto template application in Python

Is there a defacto template application for Python? I am trying to auto generate C code for use in unit tests from python My original approach using print statements is very clunky and error prone ...
3
votes
4answers
104 views

C array comparison

Is the defacto method for comparing arrays (in C) to use memcmp from string.h? I want to compare arrays of ints and doubles in my unit tests I am unsure whether to use something like: double a[] = ...
3
votes
2answers
368 views

Automated C unit testing

I have a C library compiled with MinGW, Eclipse C project. Library consists of many modules, each module can be tested. What is the best way (using MACROS or something) how to write tests for this ...
3
votes
4answers
109 views

Determine which Unit Tests to Run Based on Diffs

Does anyone know of a tool that can help determine which unit tests should be run based on the diffs from a commit? For example, assume a developer commits something that only changes one line of ...
3
votes
4answers
132 views

trickle down unit tests

If I'm writing a library in C that includes a Python interface, is it OK to just write unit tests for the functions, etc in the Python interface? Assuming the Python interface is complete, it should ...
3
votes
7answers
331 views

Creating a test case for a buffer overflow error (C/c++)

How do you create a unit test case in c for a buffer overflow that does not cause a memory error such as a segfault? I.e. Given a simple buffer overflow, such as int function () { int ...
3
votes
3answers
209 views

Emulating/faking filesystem for testing C code?

I'm looking for the cross-platform way to test some features in my application which required access to the filesystem (to write and read binary data). In the real life my application running on Linux ...
3
votes
5answers
365 views

Starting with a simple unit test in c

I was told by my boss to write unit tests for the little c file (foo.c) I wrote. I read a lot about the background of unit testing online, like testing only one function and making tests fully ...

1 2 3