blob: 12c5e442f06109096d3e21c4494743985100924f [file] [log] [blame]
bart66f196d2009-08-15 10:50:35 +00001/* Test for verifying that unsupported annotations are reported properly. */
2
3#include <stdio.h>
4#include "../../helgrind/helgrind.h"
5
6int main(int argc, char** argv)
7{
8 ANNOTATE_PUBLISH_MEMORY_RANGE(argv[0], sizeof(argv[0]));
9 fprintf(stderr, "Done.\n");
10 return 0;
11}