Files
clang-p2996/lldb/test/Shell/Process/Windows/process_load.cpp
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

13 lines
357 B
C++

// clang-format off
// REQUIRES: target-windows
// RUN: %build --compiler=clang-cl -o %t.exe -- %s
// RUN: env LLDB_USE_NATIVE_PDB_READER=1 %lldb -f %t.exe -o "b main" -o "process launch" -o "process load kernel32.dll" | FileCheck %s
int main(int argc, char *argv[]) {
return 0;
}
// CHECK: "Loading "kernel32.dll"...ok{{.*}}
// CHECK: Image 0 loaded.