mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-13 02:46:13 +00:00
12 lines
289 B
C
12 lines
289 B
C
|
|
// Prior to 3.0.1, Cachegrind was failing if run on a program that uses
|
|
// client requests. It was fixed in 3.0.1, but then reintroduced
|
|
// afterwards (reported as bug #116057). So here we test it.
|
|
|
|
#include "../../include/valgrind.h"
|
|
|
|
int main(void)
|
|
{
|
|
return RUNNING_ON_VALGRIND;
|
|
}
|