From 240fcebbcf6cbcd0337ee386aa46230417f96f30 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Tue, 29 Mar 2022 17:13:55 +0000 Subject: [PATCH] Remove integration-test.sh --- .gitignore | 1 + integration-test.sh | 21 --------------------- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100755 integration-test.sh diff --git a/.gitignore b/.gitignore index a494b2d..84c3040 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ build/ dist/ hippo*.yaml +integration-test.sh *.swp __pycache__ diff --git a/integration-test.sh b/integration-test.sh deleted file mode 100755 index a06c585..0000000 --- a/integration-test.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -for i in hippo[0-9]*.yaml; do - echo "Clearing: Moving to hippo-empty.yaml" - ./vppcfg -c hippo-empty.yaml > /tmp/vppcfg-exec-empty - [ -s /tmp/vppcfg-exec-empty ] && vppctl exec /tmp/vppcfg-exec-empty - - for j in hippo[0-9]*.yaml; do - echo " - Moving to $i .. " - ./vppcfg -c $i > /tmp/vppcfg-exec_$i - [ -s /tmp/vppcfg-exec_$i ] && vppctl exec /tmp/vppcfg-exec_$i - - echo " - Moving from $i to $j" - ./vppcfg -c $j > /tmp/vppcfg-exec_${i}_${j} - [ -s /tmp/vppcfg-exec_${i}_${j} ] && vppctl exec /tmp/vppcfg-exec_${i}_${j} - - echo " - Checking that from $j to $j is empty" - ./vppcfg -c $j > /tmp/vppcfg-exec_${j}_${j}_null - done - -done