Skip to content

Commit

Permalink
[ci] Bug Fix: System Tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ppenna committed Jun 24, 2024
1 parent acbceb3 commit 5b18e3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/ci/job/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ def __init__(self, config: dict):
super().__init__(config, f"system-test-{config['test_alias']}")

def execute(self) -> bool:
server_cmd: str = f"test-system-rust LIBOS={super().libos()} TEST={self.test_name} ARGS=\\'{self.server_args}\\'"
client_cmd: str = f"test-system-rust LIBOS={super().libos()} TEST={self.test_name} ARGS=\\'{self.client_args}\\'"
server_cmd: str = f"test-system-rust LIBOS={super().libos()} TEST={self.test_name} ARGS=\'{self.server_args}\'"
client_cmd: str = f"test-system-rust LIBOS={super().libos()} TEST={self.test_name} ARGS=\'{self.client_args}\'"
return super().execute(server_cmd, client_cmd)


Expand Down

0 comments on commit 5b18e3f

Please sign in to comment.