diff options
author | Ulas Kozat <ulas.kozat@gmail.com> | 2016-07-08 14:56:47 -0700 |
---|---|---|
committer | Ulas Kozat <ulas.kozat@gmail.com> | 2016-07-08 14:56:47 -0700 |
commit | 1689ad9e0da4386e7b3a2318ba2e90a5f2e0ebfb (patch) | |
tree | f2f35187ccd42821ee9d8dd1c0c9da8423c84e53 /tests/run.sh | |
parent | 5142bb823d7251ff52d4e3cc75487bfcf873e994 (diff) |
Restore accidentally deleted line
Change-Id: If7ea93493aab8303d5da41573116fe15047ef010
Signed-off-by: Ulas Kozat <ulas.kozat@gmail.com>
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-x | tests/run.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/run.sh b/tests/run.sh index 54d47b7..d9dec64 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -20,9 +20,9 @@ LOGLEVEL=DEBUG toscafile_test1=./tosca-templates/tosca_helloworld_nfv.yaml test1_reffile1=./tests/refdata/test1_client1.ref test1_reffile2=./tests/refdata/test1_client2.ref -test1_reffile3=./tests/refdata/test1_server.ref client1_log=./tests/logdata/client1.log client2_log=./tests/logdata/client2.log +server_log=./tests/logdata/server.log start_server() { pgrep -f "python DominoServer.py" && return 0 @@ -73,13 +73,13 @@ cleanup() { echo "Stopping Domino Server..." stop_server -# if [ -f file1 ]; then -# rm file1 -# fi + if [ -f file1 ]; then + rm file1 + fi -# if [ -f file2 ]; then -# rm file2 -# fi + if [ -f file2 ]; then + rm file2 + fi } echo "domino/tests/run.sh has been executed." |