From 40f2cb8b1f07b1346e01ff69b57e14c492f1cd0b Mon Sep 17 00:00:00 2001 From: drebs Date: Wed, 19 Apr 2017 10:18:27 +0200 Subject: [test] remove docker scripts from this repo Docker scripts are only used for CI and do not need to be in this repository. Beause of that, we decided to moved the docker scripts to a private repository where dockerfiles for other parts of leap also live. --- scripts/docker/helper/run-until-error.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 scripts/docker/helper/run-until-error.sh (limited to 'scripts/docker/helper/run-until-error.sh') diff --git a/scripts/docker/helper/run-until-error.sh b/scripts/docker/helper/run-until-error.sh deleted file mode 100755 index a4cab6ec..00000000 --- a/scripts/docker/helper/run-until-error.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -status=0 -runs=10 - -while [ ${status} -eq 0 -a ${runs} -gt 0 ]; do - echo "=== RUN ${runs}" - make rm-all-containers - make run-perf-test - status=${?} - runs=`expr ${runs} - 1` -done -- cgit v1.2.3