ftmemsim-valgrind/drd/tests/annotate_publish_hg.c
Bart Van Assche 80fdc5a9e9 - Made the ANNOTATE_RWLOCK_*() macros binary compatible with Helgrind.
- Added two additional regression tests.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10819
2009-08-15 10:50:35 +00:00

12 lines
272 B
C

/* Test for verifying that unsupported annotations are reported properly. */
#include <stdio.h>
#include "../../helgrind/helgrind.h"
int main(int argc, char** argv)
{
ANNOTATE_PUBLISH_MEMORY_RANGE(argv[0], sizeof(argv[0]));
fprintf(stderr, "Done.\n");
return 0;
}