Files
ftmemsim-valgrind/none/tests/discard.c
Nicholas Nethercote db419f2bdc Moved discard, clientperm and clientstackperm from tests/ into the test
suite-proper, giving them .vgtest files and all that.  They don't make sense
for 1.0.X because the client request constants are different in HEAD, indeed
one of them (clientperm) fails with --stable.

Also moved blocked_syscall.c from tests/ to tests/unused/.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1181
2002-10-04 14:16:38 +00:00

28 lines
445 B
C

#include <stdio.h>
#include "../../include/valgrind.h"
int fooble ( void )
{
int x, y;
y = 0;
for (x = 0; x < 100; x++) {
if ((x % 3) == 0) y += x; else y++;
}
return y;
}
void someother ( void )
{
}
int main ( void )
{
printf("fooble-1() = %d\n", fooble() );
VALGRIND_DISCARD_TRANSLATIONS( (char*)(&fooble),
((char*)(&someother)) - ((char*)(&fooble)) );
printf("fooble-2() = %d\n", fooble() );
return 0;
}