Files
clang-p2996/lldb/test/Shell/Commands/command-disassemble-mixed.c
Vladislav Dzhidzhoev 20c4e95b9c [lldb][test] Fix remote Shell tests failures on Windows host (#115716)
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.
2024-11-12 18:03:24 +01:00

21 lines
343 B
C

// invalid mixed disassembly line
// XFAIL: target-windows
// RUN: %clang_host -g %s -o %t
// RUN: %lldb %t -o "dis -m -n main" -o "exit" | FileCheck %s
// CHECK: int main
// CHECK: int i
// CHECK-NOT: invalid mixed disassembly line
// CHECK: return 0;
int main(int argc, char **argv)
{
int i;
for (i=0; i < 10; ++i) ;
return 0;
}