diff options
-rw-r--r-- | lib/spack/spack/package.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/spack/spack/package.py b/lib/spack/spack/package.py index 6d1ca64639..d0c5b22211 100644 --- a/lib/spack/spack/package.py +++ b/lib/spack/spack/package.py @@ -674,15 +674,18 @@ class Package(object): % self.name) # On successful install, remove the stage. - # Leave if if there is an error + # Leave if there is an error self.stage.destroy() tty.msg("Successfully installed %s" % self.name) print_pkg(self.prefix) - sys.exit(0) + # Use os._exit here to avoid raising a SystemExit exception, + # which interferes with unit tests. + os._exit(0) - except Exception, e: + except: + # If anything else goes wrong, get rid of the install dir. self.remove_prefix() raise |