summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/gettext/package.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gettext/package.py b/var/spack/repos/builtin/packages/gettext/package.py
index f5d9c7c45c..b3397419bd 100644
--- a/var/spack/repos/builtin/packages/gettext/package.py
+++ b/var/spack/repos/builtin/packages/gettext/package.py
@@ -100,3 +100,13 @@ class Gettext(AutotoolsPackage):
config_args.append('--with-included-libunistring')
return config_args
+
+ def check(self):
+ # Test suite fails when run in parallel:
+ #
+ # FAIL: test-verify
+ # =================
+ #
+ # icc: error #10236: File not found: 'test-verify.o'
+ # FAIL test-verify (exit status: 1)
+ make('check', parallel=False)