diff options
author | comex | 2015-01-17 22:24:13 -0500 |
---|---|---|
committer | comex | 2015-01-17 22:24:13 -0500 |
commit | d281e5233f304dab603d638a623ae54af8117ce7 (patch) | |
tree | 6605309de4f0e0728f7d9171528f376906af00f0 /test/test-jump-dis.c | |
parent | misc. objc trimmings (diff) | |
download | substitute-d281e5233f304dab603d638a623ae54af8117ce7.tar.gz |
improve test; thumb2 fixes
Diffstat (limited to 'test/test-jump-dis.c')
-rw-r--r-- | test/test-jump-dis.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test-jump-dis.c b/test/test-jump-dis.c index 1afa4e5..1a34bc0 100644 --- a/test/test-jump-dis.c +++ b/test/test-jump-dis.c @@ -5,6 +5,7 @@ int main(UNUSED int argc, char **argv) { static char buf[1048576]; UNUSED size_t size = fread(buf, 1, sizeof(buf), stdin); + printf("size=%zd\n", size); int patch_size = atoi(argv[1]); int thumb = atoi(argv[2]); bool bad = P(main)(buf, 0x10000, 0x10000 + patch_size, thumb); |