Skip to content

Commit

Permalink
Fix missing library in L0_data_compression (#6424)
Browse files Browse the repository at this point in the history
* Fix missing library in L0_data_compression

* Fix up
  • Loading branch information
GuanLuo authored and jbkyang-nvi committed Oct 13, 2023
1 parent 42add95 commit cf0b8d8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions qa/L0_data_compression/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
# Copyright 2021-2023, 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 @@ -55,7 +55,7 @@ set +e
echo "All work and no play makes Jack a dull boy" >> raw_data
python3 validation.py generate_compressed_data

$DATA_COMPRESSOR_TEST >>$TEST_LOG 2>&1
LD_LIBRARY_PATH=/opt/tritonserver/lib:${LD_LIBRARY_PATH} $DATA_COMPRESSOR_TEST >>$TEST_LOG 2>&1
if [ $? -ne 0 ]; then
echo -e "\n***\n*** Data Compression Test Failed\n***"
RET=1
Expand Down Expand Up @@ -148,6 +148,9 @@ if [ $? -ne 0 ]; then
fi
set -e

kill $SERVER_PID
wait $SERVER_PID

if [ $RET -eq 0 ]; then
echo -e "\n***\n*** Test Passed\n***"
else
Expand Down

0 comments on commit cf0b8d8

Please sign in to comment.