Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cat SERVER_LOG when failing to grep it #4252

Merged
merged 2 commits into from
Apr 19, 2022
Merged
Changes from 1 commit
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
Next Next commit
Cat SERVER_LOG when failing to grep it
  • Loading branch information
rmccorm4 committed Apr 19, 2022
commit cdb63ff91d159f121fd078c468f9c5eae93cf85e
8 changes: 4 additions & 4 deletions qa/L0_backend_tutorial/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ fi
grep "model batching: requests in batch 2" $SERVER_LOG
if [ $? -ne 0 ]; then
echo -e "\n***\n*** Failed to verify minimal server log. \n***"
cat $MINIMAL_LOG
cat $SERVER_LOG
RET=1
fi

grep "batched IN0 value: \[ 10, 11, 12, 13, 20, 21, 22, 23 \]" $SERVER_LOG
if [ $? -ne 0 ]; then
echo -e "\n***\n*** Failed to verify minimal server log. \n***"
cat $MINIMAL_LOG
cat $SERVER_LOG
RET=1
fi

Expand Down Expand Up @@ -179,14 +179,14 @@ fi
grep "model batching: requests in batch 2" $SERVER_LOG
if [ $? -ne 0 ]; then
echo -e "\n***\n*** Failed to verify recommended server log. \n***"
cat $RECOMMENDED_LOG
cat $SERVER_LOG
RET=1
fi

grep "batched INPUT value: \[ 1.000000, 1.100000, 1.200000, 1.300000, 2.000000, 2.100000, 2.200000, 2.300000, 3.000000, 3.100000, 3.200000, 3.300000, 4.000000, 4.100000, 4.200000, 4.300000, 10.000000, 10.100000, 10.200000, 10.300000, 20.000000, 20.100000, 20.200001, 20.299999, 30.000000, 30.100000, 30.200001, 30.299999, 40.000000, 40.099998, 40.200001, 40.299999 \]" $SERVER_LOG
if [ $? -ne 0 ]; then
echo -e "\n***\n*** Failed to verify recommended server log. \n***"
cat $RECOMMENDED_LOG
cat $SERVER_LOG
RET=1
fi

Expand Down