diff options
author | Derick Huth <derickhuth@gmail.com> | 2015-03-23 13:48:02 -0600 |
---|---|---|
committer | Derick Huth <derickhuth@gmail.com> | 2015-03-23 13:48:02 -0600 |
commit | e6b89c668036ff8424455d3d1d1a5d79a063fc92 (patch) | |
tree | e185ac16a4af9df7d29d189dde7ef3b8bd6c19e1 /test-chill/testchill/__main__.py | |
parent | 4d46b92b3030a4d38d7e09274f0463bbcb94694e (diff) | |
parent | 7e39433ddb5f3ac5298207d5f4e8072eb193fa7a (diff) | |
download | chill-e6b89c668036ff8424455d3d1d1a5d79a063fc92.tar.gz chill-e6b89c668036ff8424455d3d1d1a5d79a063fc92.tar.bz2 chill-e6b89c668036ff8424455d3d1d1a5d79a063fc92.zip |
Merge pull request #5 from dhuth/master
Autotools Features
Diffstat (limited to 'test-chill/testchill/__main__.py')
-rw-r--r-- | test-chill/testchill/__main__.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test-chill/testchill/__main__.py b/test-chill/testchill/__main__.py index 3e03e11..8af5b9c 100644 --- a/test-chill/testchill/__main__.py +++ b/test-chill/testchill/__main__.py @@ -316,8 +316,8 @@ def add_global_args(arg_parser): """ arg_parser.add_argument('-w', '--working-dir', dest='wd', default=os.getcwd(), help='The working directory. (Defaults to the current directory)', metavar='working-directory') arg_parser.add_argument('-R', '--rose-home', dest='rose_dir', default=os.getenv('ROSEHOME'), help='Rose home directory. (Defaults to ROSEHOME)', metavar='rose-home') - arg_parser.add_argument('-C', '--chill-home', dest='chill_dir', default=os.getenv('CHILLHOME'), help='Chill home directory. (Defaults to CHILLHOME)', metavar='chill-home') - arg_parser.add_argument('-O', '--omega-home', dest='omega_dir', default=os.joinpath(os.getcwd(), '../omega'), help='Omega home directory. (Defaults to ../omega)', metavar='omega-home') + arg_parser.add_argument('-C', '--chill-home', dest='chill_dir', default=os.path.join(os.getcwd(), '..'), help='Chill home directory. (Defaults to CHILLHOME)', metavar='chill-home') + arg_parser.add_argument('-O', '--omega-home', dest='omega_dir', default=os.path.join(os.getcwd(), '../omega'), help='Omega home directory. (Defaults to ../omega)', metavar='omega-home') arg_parser.add_argument('-b', '--binary-dir', dest='bin_dir', default=None, help='Binary directory.', metavar='bin-dir') @util.callonce @@ -364,8 +364,8 @@ def main(): coverage = gcov.GcovSet() #coverage=None results = list(test.run(args_to_tclist(coverage_set=coverage))) - #test.pretty_print_results(results) - #util.rmtemp() + test.pretty_print_results(results) + util.rmtemp() #coverage.pretty_print() with open('coverage.pickle', 'wb') as f: |