diff --git a/easybuild/toolchains/craycce.py b/easybuild/toolchains/craycce.py index 619037f62e..e60a99fedd 100644 --- a/easybuild/toolchains/craycce.py +++ b/easybuild/toolchains/craycce.py @@ -40,6 +40,5 @@ class CrayCCE(CrayPECray, CrayMPICH, LibSci): SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME def prepare(self, *args, **kwargs): - """Prepare to use this toolchain; marked as experimental.""" - self.log.experimental("Using %s toolchain", self.NAME) + """Prepare to use this toolchain.""" super(CrayCCE, self).prepare(*args, **kwargs) diff --git a/easybuild/toolchains/craygnu.py b/easybuild/toolchains/craygnu.py index 1f8c72e50d..03729a0ef5 100644 --- a/easybuild/toolchains/craygnu.py +++ b/easybuild/toolchains/craygnu.py @@ -40,6 +40,5 @@ class CrayGNU(CrayPEGCC, CrayMPICH, LibSci): SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME def prepare(self, *args, **kwargs): - """Prepare to use this toolchain; marked as experimental.""" - self.log.experimental("Using %s toolchain", self.NAME) + """Prepare to use this toolchain.""" super(CrayGNU, self).prepare(*args, **kwargs) diff --git a/easybuild/toolchains/crayintel.py b/easybuild/toolchains/crayintel.py index a549593ee6..afd00f2549 100644 --- a/easybuild/toolchains/crayintel.py +++ b/easybuild/toolchains/crayintel.py @@ -40,6 +40,5 @@ class CrayIntel(CrayPEIntel, CrayMPICH, LibSci): SUBTOOLCHAIN = DUMMY_TOOLCHAIN_NAME def prepare(self, *args, **kwargs): - """Prepare to use this toolchain; marked as experimental.""" - self.log.experimental("Using %s toolchain", self.NAME) + """Prepare to use this toolchain.""" super(CrayIntel, self).prepare(*args, **kwargs) diff --git a/test/framework/toolchain.py b/test/framework/toolchain.py index a8f3b13253..2c5a72a2bc 100644 --- a/test/framework/toolchain.py +++ b/test/framework/toolchain.py @@ -717,7 +717,7 @@ def test_independence(self): """Test independency of toolchain instances.""" # tweaking --optarch is required for Cray toolchains (craypre- module must be available) - init_config(args=['--experimental'], build_options={'optarch': 'test'}) + init_config(build_options={'optarch': 'test'}) tc_cflags = { 'CrayCCE': "-craype-verbose -O2",