Skip to content

Commit f432d41

Browse files
committed
Remove C++ client changes
1 parent 09cb282 commit f432d41

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

qa/L0_input_validation/test.sh

-11
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ DATADIR=/data/inferenceserver/${REPO_VERSION}
4646
SERVER=/opt/tritonserver/bin/tritonserver
4747
CLIENT_LOG="./input_validation_client.log"
4848
TEST_PY=./input_validation_test.py
49-
CC_UNIT_TEST=../clients/client_input_test
5049
TEST_RESULT_FILE='./test_results.txt'
5150
SERVER_LOG="./inference_server.log"
5251
TEST_LOG="./input_byte_size_test.log"
@@ -103,16 +102,6 @@ if [ $? -ne 0 ]; then
103102
fi
104103
set -e
105104

106-
# client_input_test
107-
set +e
108-
$CC_UNIT_TEST >> $CLIENT_LOG 2>&1
109-
if [ $? -ne 0 ]; then
110-
cat $CLIENT_LOG
111-
echo -e "\n***\n*** client_input_test FAILED\n***"
112-
RET=1
113-
fi
114-
set -e
115-
116105
kill $SERVER_PID
117106
wait $SERVER_PID
118107

qa/L0_sdk/test.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,8 @@ else
131131
RET=1
132132
fi
133133

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
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
137136

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

0 commit comments

Comments
 (0)