1 // Copyright 2009-2020 Intel Corporation 2 // SPDX-License-Identifier: Apache-2.0 3 4 #define CATCH_CONFIG_RUNNER 5 #include "catch.hpp" 6 7 #include "ospray/ospray.h" 8 main(int argc,char * argv[])9int main(int argc, char *argv[]) 10 { 11 ospInit(nullptr, nullptr); 12 13 int result = Catch::Session().run(argc, argv); 14 15 ospShutdown(); 16 17 return result; 18 } 19