Skip to content

Commit

Permalink
fix test_show_config since RPATH setting is now always shown in outpu…
Browse files Browse the repository at this point in the history
…t of --show-config
  • Loading branch information
boegel committed Apr 26, 2024
1 parent b6fdaf5 commit ad674d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/framework/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
from easybuild.tools.options import set_up_configuration, set_tmpdir, use_color
from easybuild.tools.toolchain.utilities import TC_CONST_PREFIX
from easybuild.tools.run import run_shell_cmd
from easybuild.tools.systemtools import HAVE_ARCHSPEC
from easybuild.tools.systemtools import DARWIN, HAVE_ARCHSPEC, get_os_type
from easybuild.tools.version import VERSION
from test.framework.utilities import EnhancedTestCase, TestLoaderFiltered, cleanup, init_config

Expand Down Expand Up @@ -5194,6 +5194,7 @@ def test_show_config(self):
r"installpath\s* \(E\) = " + os.path.join(self.test_prefix, 'tmp.*'),
r"repositorypath\s* \(D\) = " + os.path.join(default_prefix, 'ebfiles_repo'),
r"robot-paths\s* \(E\) = " + os.path.join(test_dir, 'easyconfigs', 'test_ecs'),
r"rpath\s* \(D\) = " + ('False' if get_os_type() == DARWIN else 'True'),
r"sourcepath\s* \(E\) = " + os.path.join(test_dir, 'sandbox', 'sources'),
r"subdir-modules\s* \(F\) = mods",
]
Expand Down

0 comments on commit ad674d3

Please sign in to comment.