From: Kostya Serebryany Date: Fri, 7 Sep 2018 01:36:34 +0000 (+0000) Subject: [hwasan] relax the rint-memory-usage.c test further X-Git-Tag: llvmorg-8.0.0-rc1~9276 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6fdfd6a34fccd03eb130b585abe47fa7438e7284;p=platform%2Fupstream%2Fllvm.git [hwasan] relax the rint-memory-usage.c test further llvm-svn: 341625 --- diff --git a/compiler-rt/test/hwasan/TestCases/print-memory-usage.c b/compiler-rt/test/hwasan/TestCases/print-memory-usage.c index ed9a96a..df9d534 100644 --- a/compiler-rt/test/hwasan/TestCases/print-memory-usage.c +++ b/compiler-rt/test/hwasan/TestCases/print-memory-usage.c @@ -39,17 +39,17 @@ int main() { sink = malloc_and_use(10); __hwasan_print_memory_usage(); - // CHECK: HWASAN pid: [[PID:[0-9]*]] rss: {{.*}} threads: 1 stacks: 1024000 thr_aux: {{.*}} stack_depot: {{.*}} uniq_stacks: [[UNIQ_STACKS:[0-9]*]] heap: [[HEAP:[0-9]*]] + // CHECK: HWASAN pid: [[PID:[0-9]*]] rss: {{.*}} threads: 1 stacks: [[STACKS:[0-9]*]] thr_aux: {{.*}} stack_depot: {{.*}} uniq_stacks: [[UNIQ_STACKS:[0-9]*]] heap: [[HEAP:[0-9]*]] void *one_meg = malloc_and_use(1 << 20); __hwasan_print_memory_usage(); - // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 1 stacks: 1024000 thr_aux: {{.*}} stack_depot: {{.*}} + // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 1 stacks: [[STACKS]] thr_aux: {{.*}} stack_depot: {{.*}} free(one_meg); __hwasan_print_memory_usage(); - // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 1 stacks: 1024000 thr_aux: {{.*}} stack_depot: {{.*}} uniq_stacks: {{.*}} heap: [[HEAP]] + // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 1 stacks: [[STACKS]] thr_aux: {{.*}} stack_depot: {{.*}} uniq_stacks: {{.*}} heap: [[HEAP]] pthread_t t1, t2, t3, t4; @@ -61,12 +61,12 @@ int main() { pthread_join(t4, NULL); __hwasan_print_memory_usage(); - // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 4 stacks: 4083520 + // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 4 stacks: __sync_fetch_and_add(&state, 1); pthread_join(t1, NULL); pthread_join(t2, NULL); pthread_join(t3, NULL); __hwasan_print_memory_usage(); - // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 1 stacks: 1024000 + // CHECK: HWASAN pid: [[PID]] rss: {{.*}} threads: 1 stacks: [[STACKS]] }