diff options
author | blsaws <bryan.sullivan@att.com> | 2016-05-22 21:25:38 -0700 |
---|---|---|
committer | blsaws <bryan.sullivan@att.com> | 2016-05-22 21:25:38 -0700 |
commit | 28d9889c0552554bcd60a253b144b13cecfdca3d (patch) | |
tree | 3dd07ec278735787a31fe708fe45ce7a7d4a7257 /tests | |
parent | db5e7aa499e6e6a353c57a2d7e5c044152f3328b (diff) |
Fix mode bugs found in testing again on Centos.
JIRA: COPPER-4
Change-Id: I1629ad60e990f9909c0ca08d2d7367b5e5abb1cc
Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'tests')
-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 a1c31a4..45f157f 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -21,7 +21,7 @@ # - Congress installed through install_congress_1.sh # - Copper test environment installed per # How to use: -# $ source install_congress_testserver_1.sh +# $ bash install_congress_testserver_1.sh # start=`date +%s` @@ -29,26 +29,26 @@ start=`date +%s` echo "============" echo "Test: dmz.sh" echo "============" -sh dmz.sh +bash dmz.sh if (($? == 0)); then dmz="Passed" else dmz="Failed"; fi -sh dmz-clean.sh +bash dmz-clean.sh echo "========================" echo "Test: reserved_subnet.sh" echo "========================" -sh reserved_subnet.sh +bash reserved_subnet.sh if (($? == 0)); then reserved_subnet="Passed" else reserved_subnet="Failed"; fi -sh reserved_subnet-clean.sh +bash reserved_subnet-clean.sh echo "=====================" echo "Test: smtp_ingress.sh" echo "=====================" -sh smtp_ingress.sh +bash smtp_ingress.sh if (($? == 0)); then smtp_ingress="Passed" else smtp_ingress="Failed"; fi -sh smtp_ingress-clean.sh +bash smtp_ingress-clean.sh end=`date +%s` runtime=$((end-start)) |