Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
MacroModel committed Nov 14, 2024
1 parent 37cf7c4 commit 08afdcb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/0035.process/nt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<int>(ec) != 114514)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/0035.process/posix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<int>(ec) != 114514)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/0035.process/win32.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<int>(ec) != 114514)
{
Expand Down

0 comments on commit 08afdcb

Please sign in to comment.