From 22578d2c9c74eb1a3c612b711ee4b1ea6dc066aa Mon Sep 17 00:00:00 2001 From: Andrea Cosentino Date: Thu, 24 Nov 2022 14:47:47 +0100 Subject: [PATCH] Added an Azure Storage Blob Source It Test to Makefile Signed-off-by: Andrea Cosentino --- it-tests/Makefile | 10 +++++++++- ...ob-it-test.sh => azure-storage-blob-log-it-test.sh} | 0 2 files changed, 9 insertions(+), 1 deletion(-) rename it-tests/azure/azure-storage-blob/source/{azure-storage-blob-it-test.sh => azure-storage-blob-log-it-test.sh} (100%) diff --git a/it-tests/Makefile b/it-tests/Makefile index 6b7485ef1..9fbb1e05f 100644 --- a/it-tests/Makefile +++ b/it-tests/Makefile @@ -39,6 +39,8 @@ all: ./timer-sftp-it-test.sh $(camel-version) cd misc/scp/sink/ && \ ./timer-scp-it-test.sh $(camel-version) + cd azure/azure-storage-blob/source/ && \ + ./azure-storage-blob-log-it-test.sh $(camel-version) ./scripts/results.sh rm -rf tests aws: @@ -63,6 +65,12 @@ aws: ./timer-aws-kinesis-firehose-it-test.sh $(camel-version) ./scripts/results.sh rm -rf tests +azure: + mkdir -p tests + cd azure/azure-storage-blob/source/ && \ + ./azure-storage-blob-log-it-test.sh $(camel-version) + ./scripts/results.sh + rm -rf tests misc: mkdir -p tests cd misc/sftp/source/ && \ @@ -81,4 +89,4 @@ cdc: ./scripts/results.sh rm -rf tests -.PHONY: all aws misc cdc clean +.PHONY: all aws azure misc cdc clean diff --git a/it-tests/azure/azure-storage-blob/source/azure-storage-blob-it-test.sh b/it-tests/azure/azure-storage-blob/source/azure-storage-blob-log-it-test.sh similarity index 100% rename from it-tests/azure/azure-storage-blob/source/azure-storage-blob-it-test.sh rename to it-tests/azure/azure-storage-blob/source/azure-storage-blob-log-it-test.sh