summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPeter Scheibel <scheibel1@llnl.gov>2015-10-15 10:45:03 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2015-10-15 10:45:03 -0700
commitf2b4341ad6d9dc925364214863440dde29d61b50 (patch)
tree0e757db363b3a7ac1ddafa0ca963e0b93504e18c /lib
parent11861fb8d717623c4f0014194c81fa86041fbe10 (diff)
downloadspack-f2b4341ad6d9dc925364214863440dde29d61b50.tar.gz
spack-f2b4341ad6d9dc925364214863440dde29d61b50.tar.bz2
spack-f2b4341ad6d9dc925364214863440dde29d61b50.tar.xz
spack-f2b4341ad6d9dc925364214863440dde29d61b50.zip
Always run with verbose output (so eliminate it as an option). Also remove other
commented options.
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/test-install.py23
1 files changed, 1 insertions, 22 deletions
diff --git a/lib/spack/spack/cmd/test-install.py b/lib/spack/spack/cmd/test-install.py
index eff4bcc46b..ec413115c0 100644
--- a/lib/spack/spack/cmd/test-install.py
+++ b/lib/spack/spack/cmd/test-install.py
@@ -35,34 +35,13 @@ import spack.cmd
description = "Build and install packages"
def setup_parser(subparser):
- #subparser.add_argument(
- # '-i', '--ignore-dependencies', action='store_true', dest='ignore_deps',
- # help="Do not try to install dependencies of requested packages.")
-
subparser.add_argument(
'-j', '--jobs', action='store', type=int,
help="Explicitly set number of make jobs. Default is #cpus.")
-
- #always false for test
- #subparser.add_argument(
- # '--keep-prefix', action='store_true', dest='keep_prefix',
- # help="Don't remove the install prefix if installation fails.")
-
- #always true for test
- #subparser.add_argument(
- # '--keep-stage', action='store_true', dest='keep_stage',
- # help="Don't remove the build stage if installation succeeds.")
subparser.add_argument(
'-n', '--no-checksum', action='store_true', dest='no_checksum',
help="Do not check packages against checksum")
- subparser.add_argument(
- '-v', '--verbose', action='store_true', dest='verbose',
- help="Display verbose build output while installing.")
-
- #subparser.add_argument(
- # '--fake', action='store_true', dest='fake',
- # help="Fake install. Just remove the prefix and touch a fake file in it.")
subparser.add_argument(
'output', help="test output goes in this file")
@@ -161,7 +140,7 @@ def test_install(parser, args):
keep_stage=False,
ignore_deps=False,
make_jobs=args.jobs,
- verbose=args.verbose,
+ verbose=True,
fake=False)
finally:
#Find all packages that are not a dependency of another package