From 6fdfd6a34fccd03eb130b585abe47fa7438e7284 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Fri, 7 Sep 2018 01:36:34 +0000 Subject: [PATCH] [hwasan] relax the rint-memory-usage.c test further llvm-svn: 341625 --- compiler-rt/test/hwasan/TestCases/print-memory-usage.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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]] } -- 2.7.4