File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11// RUN: %clangxx_asan -O2 %s -o %t -DTEST=basic_hook_works && not %run %t \
2- // RUN: |& FileCheck %s -check-prefix=CHECK-BASIC
2+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-BASIC
33// RUN: %clangxx_asan -O2 %s -o %t -DTEST=ignore && %run %t \
4- // RUN: |& FileCheck %s -check-prefix=CHECK-IGNORE
4+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-IGNORE
55// RUN: %clangxx_asan -O2 %s -o %t -DTEST=ignore_twice && not %run %t \
6- // RUN: |& FileCheck %s -check-prefix=CHECK-IGNORE-2
6+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-IGNORE-2
77// RUN: %clangxx_asan -O2 %s -o %t -DTEST=mismatch && %env_asan_opts=alloc_dealloc_mismatch=1 not %run %t \
8- // RUN: |& FileCheck %s -check-prefix=CHECK-MISMATCH
8+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-MISMATCH
99// RUN: %clangxx_asan -O2 %s -o %t -DTEST=ignore_mismatch && %env_asan_opts=alloc_dealloc_mismatch=1 %run %t \
10- // RUN: |& FileCheck %s -check-prefix=CHECK-IGNORE-MISMATCH
10+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-IGNORE-MISMATCH
1111// RUN: %clangxx_asan -O2 %s -o %t -DTEST=double_delete && not %run %t \
12- // RUN: |& FileCheck %s -check-prefix=CHECK-DOUBLE-DELETE
12+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-DOUBLE-DELETE
1313
1414#include < stdio.h>
1515#include < stdlib.h>
Original file line number Diff line number Diff line change 11// RUN: %clangxx_hwasan -O2 %s -o %t -DTEST=basic_hook_works && not %run %t \
2- // RUN: |& FileCheck %s -check-prefix=CHECK-BASIC
2+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-BASIC
33// RUN: %clangxx_hwasan -O2 %s -o %t -DTEST=ignore && %run %t \
4- // RUN: |& FileCheck %s -check-prefix=CHECK-IGNORE
4+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-IGNORE
55// RUN: %clangxx_hwasan -O2 %s -o %t -DTEST=ignore_twice && not %run %t \
6- // RUN: |& FileCheck %s -check-prefix=CHECK-IGNORE-2
6+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-IGNORE-2
77// RUN: %clangxx_hwasan -O2 %s -o %t -DTEST=double_delete && not %run %t \
8- // RUN: |& FileCheck %s -check-prefix=CHECK-DOUBLE-DELETE
8+ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-DOUBLE-DELETE
99
1010#include < sanitizer/hwasan_interface.h>
1111#include < stdio.h>
You can’t perform that action at this time.
0 commit comments