repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drd: Add a consistency check
[valgrind.git]
/
drd
/
tests
/
annotate_publish_hg.c
blob
12c5e442f06109096d3e21c4494743985100924f
1
/* Test for verifying that unsupported annotations are reported properly. */
2
3
#include <stdio.h>
4
#include
"../../helgrind/helgrind.h"
5
6
int
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
}