diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-08-09 09:53:34 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-08-09 09:53:34 +0100 |
commit | 231beb5c3fc50f40e31b9e00237c67f267188057 (patch) | |
tree | 269eff309883d5ae7e8e3fdfc012aa91d53416cf /test/test_spec | |
parent | 8062fc191395fbedd431fd18d23a7a60e2107e90 (diff) |
preliminary testbed
Diffstat (limited to 'test/test_spec')
-rw-r--r-- | test/test_spec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/test_spec b/test/test_spec new file mode 100644 index 0000000..ba0ba55 --- /dev/null +++ b/test/test_spec @@ -0,0 +1,27 @@ +## +## Definition of constants to be used by the testbed +## + +## SCORSH_URL: URL of the git repo for scorsh +SCORSH_URL="http://github.com/dyne/scorsh" + +## SCORSH_REPO: folder where the scorsh repo will be cloned +SCORSH_REPO=$(realpath "./scorsh/") + +## SCORSH_APP: path where the scorsh app will be installed +SCORSH_APP=$(realpath "./scorsh_app/") + +## REMOTE_REPO: path of the folder where the "remote" repo will be +## created +REMOTE_REPO=$(realpath "./testbed_remote.git") + +## LOCAL_REPO: folder where REMOTE_REPO will be cloned +LOCAL_REPO=$(realpath "./testbed_repo") + + +TESTS="\ +./create_testbed.sh \ +./destroy_testbed.sh \ +" + +##./destroy_testbed.sh \ |