Skip to content

Commit

Permalink
Loosen tolerance for unit test running on Apple M2/M3 processors.
Browse files Browse the repository at this point in the history
(Internal change: 2335104)
  • Loading branch information
meshula authored and pixar-oss committed Jul 24, 2024
1 parent 559b77a commit fd1338e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pxr/base/gf/testenv/testGfColor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ main(int argc, char *argv[])
// test that a EOTF curve <-> Linear works
GfColor c1(mauveLinear, csSRGB); // convert linear to SRGB
GfColor c2(c1, csLinearSRGB);
TF_AXIOM(GfIsClose(mauveLinear, c2, 1e-7f));
TF_AXIOM(GfIsClose(mauveLinear, c2, 1e-6f));
GfColor c3(c2, csSRGB);
TF_AXIOM(GfIsClose(c1, c3, 1e-7f));
}
Expand Down

0 comments on commit fd1338e

Please sign in to comment.