Skip to content

Commit 39957b6

Browse files
committed
feat(IBA) scale - fix tests
Signed-off-by: Anton Dukhovnikov <antond@wetafx.co.nz>
1 parent e496ab1 commit 39957b6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/doc/imagebufalgo.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ Image arithmetic
13571357
.. code-tab:: bash oiiotool
13581358

13591359
# Pixel-by-pixel multiplication of all channels of one image by the only channel of another image
1360-
oiiotol a.exr mono.exr --scale -o scale.exr
1360+
oiiotool a.exr mono.exr --scale -o scale.exr
13611361

13621362
|
13631363

testsuite/docs-examples-cpp/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
command += run_app("cmake -E copy " + test_source_dir + "/../common/unpremult.tif unpremult.tif")
2121
command += run_app("cmake -E copy " + test_source_dir + "/../common/bayer.png bayer.png")
2222

23-
command += run_app("oiiotool --pattern fill:top=0:bottom=1 256x256 1 -o mono.exr")
23+
command += oiio_app("oiiotool") + "--pattern fill:top=0:bottom=1 256x256 1 -o mono.exr > out.txt ;"
2424

2525
# Copy the grid to both a tiled and scanline version
2626
command += oiio_app("iconvert") + "../common/grid.tif --scanline scanline.tif > out.txt ;"

testsuite/docs-examples-python/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
command += run_app("cmake -E copy " + test_source_dir + "/../common/unpremult.tif unpremult.tif")
2121
command += run_app("cmake -E copy " + test_source_dir + "/../common/bayer.png bayer.png")
2222

23-
command += run_app("oiiotool --pattern fill:top=0:bottom=1 256x256 1 -o mono.exr")
23+
command += oiio_app("oiiotool") + "--pattern fill:top=0:bottom=1 256x256 1 -o mono.exr > out.txt ;"
2424

2525
# Copy the grid to both a tiled and scanline version
2626
command += oiio_app("iconvert") + "../common/grid.tif --scanline scanline.tif > out.txt ;"

0 commit comments

Comments
 (0)