From 0cdbbeb25652fa3fc313f9d7702c0c5089852e08 Mon Sep 17 00:00:00 2001 From: Lauren Wrubleski Date: Fri, 19 Jan 2024 11:33:52 -0700 Subject: [PATCH] Disable docsphinx test on macOS --- test/pass/doc-sphinxdoxygen.cmake | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test/pass/doc-sphinxdoxygen.cmake b/test/pass/doc-sphinxdoxygen.cmake index db88fa81..1ce417e0 100644 --- a/test/pass/doc-sphinxdoxygen.cmake +++ b/test/pass/doc-sphinxdoxygen.cmake @@ -2,7 +2,9 @@ # Copyright (C) 2023 Advanced Micro Devices, Inc. # ###################################################################################################################### -install_dir(${TEST_DIR}/docsphinx TARGETS doc install) -test_expect_installed_file( - share/doc/useful/html/index.html - share/doc/useful/html/reference.html) +if(NOT APPLE) + install_dir(${TEST_DIR}/docsphinx TARGETS doc install) + test_expect_installed_file( + share/doc/useful/html/index.html + share/doc/useful/html/reference.html) +endif()