Skip to content

Commit

Permalink
Reduce memory for large testDeepScanLineBasic (#1347)
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Hillman <peterh@wetafx.co.nz>
  • Loading branch information
peterhillman authored and cary-ilm committed Mar 5, 2023
1 parent 282114f commit 66f427f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/OpenEXRTest/testDeepScanLineBasic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -646,11 +646,11 @@ const int minY = 11;

namespace large
{
const int width = 10000;
const int height = 5000;
const int minX = -22;
const int minY = -12;
}
const int width = 5000;
const int height = 2500;
const int minX = -22;
const int minY = -12;
} // namespace large


void testDeepScanLineBasic (const std::string &tempDir)
Expand Down

0 comments on commit 66f427f

Please sign in to comment.