From 0aee36709b81c3e4cdeae3c043162d0e1e5e7570 Mon Sep 17 00:00:00 2001
From: pierreozoux <pierre@ozoux.net>
Date: Wed, 4 Mar 2015 11:54:50 +0000
Subject: [PATCH] Moves supported application to a file

---
 SUPPORTED_APPLICATIONS | 1 +
 tests/finish.sh        | 4 +++-
 tests/start.sh         | 4 +++-
 3 files changed, 7 insertions(+), 2 deletions(-)
 create mode 100644 SUPPORTED_APPLICATIONS

diff --git a/SUPPORTED_APPLICATIONS b/SUPPORTED_APPLICATIONS
new file mode 100644
index 0000000..d0619cc
--- /dev/null
+++ b/SUPPORTED_APPLICATIONS
@@ -0,0 +1 @@
+static wordpress known piwik owncloud
diff --git a/tests/finish.sh b/tests/finish.sh
index daee311..091265d 100755
--- a/tests/finish.sh
+++ b/tests/finish.sh
@@ -1,8 +1,10 @@
 #!/bin/bash -eux
 
+ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
+
 systemctl list-units | grep -c failed | grep 0
 
-applications=( static wordpress known piwik owncloud )
+applications=( `cat $ROOT_DIR/SUPPORTED_APPLICATIONS` )
 
 for application in "${applications[@]}"
 do
diff --git a/tests/start.sh b/tests/start.sh
index b97c8ca..f034e2b 100755
--- a/tests/start.sh
+++ b/tests/start.sh
@@ -1,6 +1,8 @@
 #!/bin/bash -eux
 
-applications=( static wordpress known piwik owncloud )
+ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/..
+
+applications=( `cat $ROOT_DIR/SUPPORTED_APPLICATIONS` )
 
 for application in "${applications[@]}"
 do
-- 
GitLab