Skip to content

Commit

Permalink
More logging
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Aug 28, 2024
1 parent 969fbae commit 4da7541
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion integration-tests/scripts/buildTests
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ do
popd
elif [ "$x" = "ccip-load" ]; then
echo "Changing directory and executing go test -c ./... for 'ccip-load' package"
pushd "./ccip-tests/load" && go test -c -tags embed -o .. ./...
pwd
pushd "./ccip-tests/load" && go test -c -tags embed -o ../.. ./...
ls
popd
pwd
ls
else
go test -c -tags embed ./"${x}"
fi
Expand Down
4 changes: 3 additions & 1 deletion integration-tests/scripts/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ cd "$SCRIPT_DIR"/../ || exit 1

# run the tests
if [ "${SUITE}" = "ccip-load" ]; then
./ccip-tests/load.test -test.v -test.count 1 ${ARGS} -test.run ^${TEST_NAME}$
pwd
ls
./load.test -test.v -test.count 1 ${ARGS} -test.run ^${TEST_NAME}$
else
./${SUITE}.test -test.v -test.count 1 ${ARGS} -test.run ^${TEST_NAME}$
fi
Expand Down

0 comments on commit 4da7541

Please sign in to comment.