File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
// 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
3
3
// 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
5
5
// 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
7
7
// 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
9
9
// 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
11
11
// 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
13
13
14
14
#include < stdio.h>
15
15
#include < stdlib.h>
Original file line number Diff line number Diff line change 1
1
// 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
3
3
// 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
5
5
// 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
7
7
// 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
9
9
10
10
#include < sanitizer/hwasan_interface.h>
11
11
#include < stdio.h>
You can’t perform that action at this time.
0 commit comments