Skip to content

Commit 962d1f0

Browse files
committed
Update affected tests
1 parent 36114c4 commit 962d1f0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

qa/L0_cuda_shared_memory/cuda_shared_memory_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def test_too_big_shm(self):
283283
)
284284
if len(error_msg) > 0:
285285
self.assertIn(
286-
"input byte size mismatch for input 'INPUT1' for model 'simple'. Expected 64, got 128",
286+
"input 'INPUT1' got unexpected byte size 128, expected 64",
287287
error_msg[-1],
288288
)
289289
shm_handles.append(shm_ip2_handle)

qa/L0_sdk/test.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,9 @@ else
131131
RET=1
132132
fi
133133

134-
g++ http_test.cc $client_lib/libhttpclient_static.a $client_lib/libcurl.a -o http_test_static \
135-
-I$client_inc -lz -lssl -lcrypto -lpthread
134+
g++ http_test.cc $client_lib/libhttpclient_static.a $client_lib/libcurl.a \
135+
$client_lib/libtritoncommonmodelconfig.a $client_lib/libprotobuf.a \
136+
-o http_test_static -I$client_inc -lz -lssl -lcrypto -lpthread
136137

137138
if [ $? -eq 0 ]; then
138139
if [[ ! -x "./http_test_static" ]]; then

qa/L0_shared_memory/shared_memory_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def test_too_big_shm(self):
272272
)
273273
if len(error_msg) > 0:
274274
self.assertIn(
275-
"input byte size mismatch for input 'INPUT1' for model 'simple'. Expected 64, got 128",
275+
"input 'INPUT1' got unexpected byte size 128, expected 64",
276276
error_msg[-1],
277277
)
278278
shm_handles.append(shm_ip2_handle)

0 commit comments

Comments
 (0)