Nicholas Nethercote 3035e5abee Cachegrind was aborting if it hit a client request. Now it doesn't.
This fixes #116057, I think.  I added a regtest so it won't regress again.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5072
2005-11-10 15:20:37 +00:00

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;
}