-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: ✅ add test runner and configuration tree fixture
Signed-off-by: Eric Villard <[email protected]>
- Loading branch information
Showing
14 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#! /usr/bin/env bash | ||
echo "run $(readlink -f "${BASH_SOURCE}")" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#! /usr/bin/env bash | ||
echo "run $(readlink -f "${BASH_SOURCE}")" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#! /usr/bin/env bash | ||
echo "run $(readlink -f "${BASH_SOURCE}")" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#! /usr/bin/env bash | ||
echo "run $(readlink -f "${BASH_SOURCE}")" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#! /usr/bin/env bash | ||
main_dir() | ||
{ | ||
dirname "$(dirname "$(readlink -f "${BASH_SOURCE}")")" | ||
} | ||
|
||
. "$(main_dir)"/install.sh | ||
|
||
export HOSTNAME="hostname1" | ||
|
||
log "> Run install script..." | ||
"$(main_dir)"/install.sh -v | ||
log " \e[32mDone\e[0m" | ||
|
||
log "> Clean up test env..." | ||
[ -d "/tmp/my" ] && rm -rf "/tmp/my" | ||
log " \e[32mDone\e[0m" |