-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests extension crashes when loading unless kit 105.1 update is reverted
- Loading branch information
Showing
4 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#pragma once | ||
|
||
void run_all_UsdUtil_tests(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// #define DOCTEST_CONFIG_IMPLEMENT | ||
// #define DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL | ||
// #define DOCTEST_CONFIG_SUPER_FAST_ASSERTS | ||
|
||
#include "UsdUtilTests.h" | ||
|
||
#include "cesium/omniverse/Context.h" | ||
#include "cesium/omniverse/LoggerSink.h" | ||
#include "cesium/omniverse/UsdUtil.h" | ||
|
||
#include <doctest/doctest.h> | ||
|
||
#include <iostream> | ||
|
||
void run_all_UsdUtil_tests() { | ||
using namespace cesium::omniverse; | ||
CESIUM_LOG_INFO("Running UsdUtil Tests..."); | ||
CHECK(cesium::omniverse::UsdUtil::primExists(pxr::SdfPath("/Cesium"))); | ||
CESIUM_LOG_INFO("UsdUtil Tests complete!"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters