Since the remote Shell test execution feature was added, these tests should now be disabled on Windows target instead of Windows host. It should fix failures on https://lab.llvm.org/staging/#/builders/197/builds/76.
12 lines
546 B
Plaintext
12 lines
546 B
Plaintext
REQUIRES: target-windows, lld, (target-arm || target-aarch64)
|
|
RUN: %build --compiler=clang-cl --arch=32 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp
|
|
RUN: %build --compiler=clang-cl --arch=64 --nodefaultlib --output=%t.exe %S/Inputs/CallingConventionsTest.cpp
|
|
RUN: lldb-test symbols -dump-ast %t.exe | FileCheck %s
|
|
|
|
CHECK: Module: {{.*}}
|
|
CHECK-DAG: int (*FuncCCallPtr)();
|
|
CHECK-DAG: int (*FuncStdCallPtr)();
|
|
CHECK-DAG: int (*FuncFastCallPtr)();
|
|
CHECK-DAG: int (*FuncVectorCallPtr)();
|
|
CHECK-DAG: int (S::*FuncThisCallPtr)();
|