From d66a8495f68613c51ec1377665118eb76547d18f Mon Sep 17 00:00:00 2001 From: Jake Hillion Date: Thu, 26 Oct 2023 08:23:26 -0700 Subject: [PATCH] integration: move pid back to end --- test/integration/runner_common.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/integration/runner_common.cpp b/test/integration/runner_common.cpp index 71b574c0..fcdbc662 100644 --- a/test/integration/runner_common.cpp +++ b/test/integration/runner_common.cpp @@ -188,7 +188,6 @@ OidProc OidIntegration::runOidOnProcess(OidOpts opts, "--dump-json"s, "--script-source"s, opts.scriptSource, "--mode=strict"s, - "--pid"s, std::to_string(targetProcess.id()), }; // clang-format on @@ -212,6 +211,9 @@ OidProc OidIntegration::runOidOnProcess(OidOpts opts, oid_args.emplace_back(*suffix); } + oid_args.emplace_back("--pid"); + oid_args.emplace_back(std::to_string(targetProcess.id())); + if (verbose) { std::cerr << "Running: " << targetExe << "\n"; std::cerr << "Running: " << oidExe << " ";