Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions qa/L0_grpc/python_grpc_aio_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright 2022-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2022-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -100,9 +100,11 @@ async def test_get_system_shared_memory_status(self):
async def test_register_system_shared_memory(self):
with self.assertRaisesRegex(
InferenceServerException,
"\[StatusCode\.INTERNAL\] Unable to open shared memory region: ''",
"\[StatusCode\.INTERNAL\] Unable to open shared memory region: '/test_shm'",
):
await self._triton_client.register_system_shared_memory("", "", 0)
await self._triton_client.register_system_shared_memory(
"test_shm", "/test_shm", 0
)

async def test_unregister_system_shared_memory(self):
await self._triton_client.unregister_system_shared_memory()
Expand Down
Loading