From 08afdcb6d81ff2ff7df7572c36d4a22f33bee7fb Mon Sep 17 00:00:00 2001 From: MacroModel <33865334+MacroModel@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:05:02 +0800 Subject: [PATCH] upd --- tests/0035.process/nt.cc | 2 +- tests/0035.process/posix.cc | 2 +- tests/0035.process/win32.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/0035.process/nt.cc b/tests/0035.process/nt.cc index 8d41e7fc..0fbc3ad1 100644 --- a/tests/0035.process/nt.cc +++ b/tests/0035.process/nt.cc @@ -3,7 +3,7 @@ int main() { - ::fast_io::nt_process p{u8"test.exe", {}, {}, {}}; + ::fast_io::nt_process p{u8"tests.0035.process.test", {}, {}, {}}; auto ec{wait(p)}; if (::std::bit_cast(ec) != 114514) { diff --git a/tests/0035.process/posix.cc b/tests/0035.process/posix.cc index 122addd8..f4f30262 100644 --- a/tests/0035.process/posix.cc +++ b/tests/0035.process/posix.cc @@ -3,7 +3,7 @@ int main() { - ::fast_io::posix_process p{u8"test", {}, {}, {}}; + ::fast_io::posix_process p{u8"tests.0035.process.test", {}, {}, {}}; auto ec{wait(p)}; if (::std::bit_cast(ec) != 114514) { diff --git a/tests/0035.process/win32.cc b/tests/0035.process/win32.cc index a5b4e6e2..50b96cd4 100644 --- a/tests/0035.process/win32.cc +++ b/tests/0035.process/win32.cc @@ -3,7 +3,7 @@ int main() { - ::fast_io::win32_process p{u8"test.exe", {}, {}, {}}; + ::fast_io::win32_process p{u8"tests.0035.process.test", {}, {}, {}}; auto ec{wait(p)}; if (::std::bit_cast(ec) != 114514) {