mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
- Added two additional regression tests. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10819
12 lines
272 B
C
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;
|
|
}
|