From 4da7541789dd29cf1ea97e5707f4992a1fd60a81 Mon Sep 17 00:00:00 2001 From: Balamurali Gopalswami Date: Wed, 28 Aug 2024 19:49:20 -0400 Subject: [PATCH] More logging --- integration-tests/scripts/buildTests | 6 +++++- integration-tests/scripts/entrypoint | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/integration-tests/scripts/buildTests b/integration-tests/scripts/buildTests index 0edd9d4c450..ae1dbad572a 100755 --- a/integration-tests/scripts/buildTests +++ b/integration-tests/scripts/buildTests @@ -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 diff --git a/integration-tests/scripts/entrypoint b/integration-tests/scripts/entrypoint index 0b179b3e97e..26fda343306 100755 --- a/integration-tests/scripts/entrypoint +++ b/integration-tests/scripts/entrypoint @@ -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