-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MAYA-107303 - UFE: crash (debug only) with multiple UFE items in single string #1039
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,6 @@ set(TEST_SCRIPT_FILES | |
testUsdExportSkeleton.py | ||
testUsdExportStripNamespaces.py | ||
testUsdExportStroke.py | ||
testUsdExportUVTransforms.py | ||
testUsdExportVisibilityDefault.py | ||
testUsdImportCamera.py | ||
testUsdImportColorSets.py | ||
|
@@ -72,6 +71,15 @@ set(TEST_SCRIPT_FILES | |
testUsdMayaAdaptorUndoRedo.py | ||
) | ||
|
||
if(BUILD_PXR_PLUGIN) | ||
# This test uses the file "UsdExportUVTransforms.ma" which | ||
# requires the plugin "pxrUsdPreviewSurface" that is built by the | ||
# Pixar plugin. | ||
list(APPEND TEST_SCRIPT_FILES | ||
testUsdExportUVTransforms.py | ||
) | ||
endif() | ||
Comment on lines
+74
to
+81
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had built locally only the maya-usd plugin and got this test failing. Found it is because of the ma file it loads (there is another example of this). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A better approach would be to port this test to use usdPreviewSurface node that is independent of Pixar plugin - see https://github.com/Autodesk/maya-usd/blob/dev/lib/usd/pxrUsdPreviewSurface/usdPreviewSurfacePlugin.cpp There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's do that in a separate PR. I copied this way of skipping the test from another place. So there are multiple tests that need to be ported. |
||
|
||
if (BUILD_RFM_TRANSLATORS) | ||
list(APPEND TEST_SCRIPT_FILES | ||
testUsdExportRfMShaders.py | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit-pick: since this is in the unnamed namespace, static is redundant.