diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-09-02 09:11:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-02 09:11:00 +0000 |
commit | 97c243bff05175ff9d339725a70100c0b0037ca4 (patch) | |
tree | 789a4e39518da9892a7503ad57dd51ead94b16c0 /testcases | |
parent | b04a5d8a57f30d8af1af2a5786af8baa351b8abc (diff) | |
parent | 7442f6fb3ec962481d45a8ee0d12ad96242d9c0e (diff) |
Merge "Print all the Copper test output to a log file"
Diffstat (limited to 'testcases')
-rwxr-xr-x | testcases/features/copper.py | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/testcases/features/copper.py b/testcases/features/copper.py index b1df99a52..50319d965 100755 --- a/testcases/features/copper.py +++ b/testcases/features/copper.py @@ -14,23 +14,24 @@ # See the License for the specific language governing permissions and # limitations under the License. # +import argparse import sys import time -import argparse import functest.utils.functest_logger as ft_logger import functest.utils.functest_utils as functest_utils + parser = argparse.ArgumentParser() parser.add_argument("-r", "--report", help="Create json result file", action="store_true") args = parser.parse_args() -functest_yaml = functest_utils.get_functest_yaml() - -dirs = functest_yaml.get('general').get('directories') -COPPER_REPO = dirs.get('dir_repo_copper') +COPPER_REPO = functest_utils.get_parameter_from_yaml( + 'general.directories.dir_repo_copper') +RESULTS_DIR = functest_utils.get_parameter_from_yaml( + 'general.directories.dir_results') logger = ft_logger.Logger("copper").getLogger() @@ -40,7 +41,10 @@ def main(): start_time = time.time() - ret_val = functest_utils.execute_command(cmd, exit_on_error=False) + log_file = RESULTS_DIR + "/copper.log" + ret_val = functest_utils.execute_command(cmd, + exit_on_error=False, + output_file=log_file) stop_time = time.time() duration = round(stop_time - start_time, 1) |