summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/platform/process/list/main.cpp
blob: 955f6e4382d2005a1ad6f628e60bacffac21c743 (plain)
1
2
3
4
5
6
7
8
9
#include <chrono>
#include <fstream>
#include <thread>

int main(int argc, char const *argv[]) {
  std::ofstream(argv[1]).close();
  std::this_thread::sleep_for(std::chrono::seconds(30));
  return 0;
}