-
Hi - I'm getting some test failures when building with this combination: Linux (Centos 7.7) The tests that fail are:
Can anybody else confirm that they do/don't get these failures? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Hey @pmolodo! I just gave that configuration a try and I am not seeing any test failures. I'm running on RHEL 7.9, but other than that, the core USD, maya-usd, and Maya versions were all as you specified. Any details in the log as to where those tests are failing? |
Beta Was this translation helpful? Give feedback.
-
TIL: trailing whitespace is important in maya
whereas this won't, and will cause the entire section of the .mod file to be silently ignored:
(At least as of maya-2019. Haven't checked 2020 yet...) |
Beta Was this translation helpful? Give feedback.
-
@pmolodo I checked all the .mod files in the repo and they all have a trailing space after the colon (:) so they should be good. But even so when running the tests we don't use the .mod files, instead the environment is setup by the cmake test calls. Is there something to fix in the repo, or was is something specific to how you are running the tests? Sean |
Beta Was this translation helpful? Give feedback.
-
So, just to close the loop on this discussion - my failures were caused by a combination of two things:
Re: the second issue, related to the |
Beta Was this translation helpful? Give feedback.
So, just to close the loop on this discussion - my failures were caused by a combination of two things:
MAYA_MODULE_PATH
VP2_RENDER_DELEGATE_PROXY
env var get setMAYAUSD_DISABLE_VP2_RENDER_DELEGATE
, and the tests now set this env-var.Re: the second issue, related to the
.mod
file causing tests to fail... this does make me think that we should have some way of testing the .mod. Ideally, it w…