We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1acad6 + 9ec93a6 commit 91a84deCopy full SHA for 91a84de
.github/workflows/main.yml
@@ -43,7 +43,7 @@ jobs:
43
buildType: RELEASE
44
containerImage: ghcr.io/gafferhq/build/build:2.0.0
45
options: .github/workflows/main/options.posix
46
- dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/6.0.0/gafferDependencies-6.0.0-linux.tar.gz
+ dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/7.0.0/gafferDependencies-7.0.0-linux.tar.gz
47
tests: testCore testCorePython testScene testImage testAlembic testUSD testVDB
48
publish: true
49
@@ -52,23 +52,23 @@ jobs:
52
buildType: DEBUG
53
54
55
56
57
publish: false
58
59
- name: windows-python3
60
os: windows-2019
61
62
options: .github/workflows/main/options.windows
63
- dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/6.0.0/gafferDependencies-6.0.0-windows.zip
+ dependenciesURL: https://github.com/GafferHQ/dependencies/releases/download/7.0.0/gafferDependencies-7.0.0-windows.zip
64
65
66
67
- name: windows-python3-debug
68
69
buildType: RELWITHDEBINFO
70
71
72
73
74
test/IECore/CompilerTest.h
@@ -39,11 +39,17 @@
39
#include "IECore/Export.h"
40
41
IECORE_PUSH_DEFAULT_VISIBILITY
42
+#include "OpenEXR/OpenEXRConfig.h"
+#if OPENEXR_VERSION_MAJOR < 3
#include "OpenEXR/ImathBox.h"
#include "OpenEXR/ImathVec.h"
-IECORE_POP_DEFAULT_VISIBILITY
-
#include "OpenEXR/ImathLineAlgo.h"
+#else
+#include "Imath/ImathBox.h"
+#include "Imath/ImathVec.h"
50
+#include "Imath/ImathLineAlgo.h"
51
+#endif
+IECORE_POP_DEFAULT_VISIBILITY
#include "boost/test/unit_test.hpp"
test/IECore/DataConversionTest.h
@@ -46,7 +46,6 @@ IECORE_PUSH_DEFAULT_VISIBILITY
IECORE_POP_DEFAULT_VISIBILITY
#include "boost/random.hpp"
-#include "boost/test/floating_point_comparison.hpp"
#include <cassert>
test/IECore/DataConvertTest.h
@@ -44,8 +44,6 @@ IECORE_PUSH_DEFAULT_VISIBILITY
namespace IECore
test/IECore/DespatchTypedDataTest.h
@@ -45,8 +45,6 @@ IECORE_PUSH_DEFAULT_VISIBILITY
using namespace Imath;
test/IECore/IECoreTest.cpp
@@ -35,7 +35,12 @@
35
36
37
38
#include "OpenEXR/ImathColor.h"
+#include "Imath/ImathColor.h"
#include <iostream>
test/IECore/Imath.py
@@ -81,8 +81,8 @@ def testConstructors(self):
81
self.assertEqual(v.x, 1)
82
self.assertEqual(v.y, 1)
83
84
- self.assertRaises( RuntimeError, imath.V2f, [ 1 ] )
85
- self.assertRaises( RuntimeError, imath.V2f, [ 1, 2, 3 ] )
+ self.assertRaises( Exception, imath.V2f, [ 1 ] )
+ self.assertRaises( Exception, imath.V2f, [ 1, 2, 3 ] )
86
87
def testDimensions(self):
88
"""Test V2f dimensions"""
@@ -291,9 +291,9 @@ def testConstructors(self):
291
292
self.assertEqual(v.z, 1)
293
294
- self.assertRaises( RuntimeError, imath.V3f, [ 1 ] )
295
- self.assertRaises( RuntimeError, imath.V3f, [ 1, 2 ] )
296
- self.assertRaises( RuntimeError, imath.V3f, [ 1, 2, 3, 4 ] )
+ self.assertRaises( Exception, imath.V3f, [ 1 ] )
+ self.assertRaises( Exception, imath.V3f, [ 1, 2 ] )
+ self.assertRaises( Exception, imath.V3f, [ 1, 2, 3, 4 ] )
297
298
299
"""Test V3f dimensions"""
test/IECore/IndexedIOTest.h
@@ -43,8 +43,6 @@ IECORE_PUSH_DEFAULT_VISIBILITY
#include <string>
test/IECore/InternedStringTest.cpp
@@ -36,7 +36,12 @@
#include "IECore/InternedString.h"
#include "OpenEXR/ImathRandom.h"
+#include "Imath/ImathRandom.h"
#include "boost/lexical_cast.hpp"
test/IECore/InterpolatorTest.h
@@ -39,18 +39,23 @@
#include "IECore/Interpolator.h"
#include "OpenEXR/ImathMatrix.h"
+#include "OpenEXR/ImathMatrixAlgo.h"
+#include "Imath/ImathMatrix.h"
+#include "Imath/ImathMatrixAlgo.h"
-#include "OpenEXR/ImathMatrixAlgo.h"
{
void addInterpolatorTest(boost::unit_test::test_suite* test);
0 commit comments