// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-License-Identifier: BSD-3-Clause #include #include #include static bool TestFile(const std::string& fname) { vtkObject::SetGlobalWarningDisplay(0); vtkNew reader; reader->AddFileName(fname.c_str()); reader->Update(); vtkObject::SetGlobalWarningDisplay(1); return true; } static std::string GetFileName(int argc, char* argv[], const char* fnameC) { char* fileNameC = vtkTestUtilities::ExpandDataFileName(argc, argv, fnameC); std::string fname(fileNameC); delete[] fileNameC; return fname; } /** * This test open various unsupported files and ensures that the reader raises * errors as expected without crashing. */ int TestIOSSUnsupported(int argc, char* argv[]) { if (TestFile(GetFileName(argc, argv, "Data/Exodus/test-nfaced.exo"))) { return EXIT_SUCCESS; } return EXIT_FAILURE; }