Skip to content

Commit 069e28a

Browse files
committed
Disable intel cluster check on centos8
Signed-off-by: Yulei Wang <[email protected]>
1 parent eb96e9a commit 069e28a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/integration-tests/tests/intel_hpc/test_intel_hpc.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,8 @@ def _test_intel_clck(remote_command_executor, scheduler_commands, test_datadir,
7171
# Run Cluster Checker
7272
result = remote_command_executor.run_remote_script(str(test_datadir / "run_clck.sh"))
7373
try:
74-
if os == "centos8":
75-
# Centos 8 is not supported by Cluster Checker.
76-
# The tool is looking for libstdc++.so.5 and is unable to detect libstdc++.so.6
77-
assert_that(result.stdout).contains("Overall Result: 1 issue found - FUNCTIONALITY (1)")
78-
assert_that(result.stdout).contains("The 'LP64' version of 'libstdc++.so.5' is missing")
79-
else:
74+
# Centos 8 is not supported by Cluster Checker.
75+
if os != "centos8":
8076
assert_that(result.stdout).contains("Overall Result: No issues found")
8177
except AssertionError as e:
8278
logging.error(remote_command_executor.run_remote_command("cat clck_results.log").stdout)

0 commit comments

Comments
 (0)