mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-10 05:37:06 +00:00
run a custom client request. By doing this, I found out that callgrind.h still defined client requests for VG 2 :-( Obviously, nobody was using them. This is fixed, and other small things to make the test run, too. Notice for myself: regression tests are needed. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5807
14 lines
243 B
C
14 lines
243 B
C
|
|
// Similar to Cachegrind, check if instrumentation works in the presence
|
|
// of a client request. Uses a Callgrind request to check this.
|
|
|
|
#include "../callgrind.h"
|
|
|
|
int main(void)
|
|
{
|
|
CALLGRIND_ZERO_STATS;
|
|
|
|
return RUNNING_ON_VALGRIND;
|
|
}
|
|
|