[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / llvm-cxxfilt / strip-underscore.test
blob4c33cdfeadd7f747b8c17f87d266acc046a298a0
1 ## Show the behaviour of --[no-]strip-underscore. This test does not test
2 ## the platform-specific default behaviour. This is tested elsewhere.
4 RUN: llvm-cxxfilt -_ __ZN2ns1fE _ZSt1f _f | FileCheck %s -check-prefix CHECK-STRIPPED
5 RUN: llvm-cxxfilt --strip-underscore __ZN2ns1fE _ZSt1f _f | FileCheck %s -check-prefix CHECK-STRIPPED
6 RUN: llvm-cxxfilt -n __ZN2ns1fE _ZSt1f _f | FileCheck %s -check-prefix CHECK-UNSTRIPPED
7 RUN: llvm-cxxfilt --no-strip-underscore __ZN2ns1fE _ZSt1f _f | FileCheck %s -check-prefix CHECK-UNSTRIPPED
9 CHECK-STRIPPED: ns::f
10 CHECK-STRIPPED: _ZSt1f
11 CHECK-STRIPPED: _f
13 CHECK-UNSTRIPPED: __ZN2ns1fE
14 CHECK-UNSTRIPPED: std::f
15 CHECK-UNSTRIPPED: _f