aboutsummaryrefslogtreecommitdiff
path: root/apps/CameraITS/tests/scene1/test_format_combos.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/CameraITS/tests/scene1/test_format_combos.py')
-rw-r--r--apps/CameraITS/tests/scene1/test_format_combos.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/CameraITS/tests/scene1/test_format_combos.py b/apps/CameraITS/tests/scene1/test_format_combos.py
index a7cf5b8..a021102 100644
--- a/apps/CameraITS/tests/scene1/test_format_combos.py
+++ b/apps/CameraITS/tests/scene1/test_format_combos.py
@@ -13,12 +13,12 @@
# limitations under the License.
import its.image
+import its.caps
import its.device
import its.objects
import its.error
import its.target
import sys
-import time
import os
import os.path
@@ -33,6 +33,10 @@ def main():
with its.device.ItsSession() as cam:
props = cam.get_camera_properties()
+ if (not its.caps.compute_target_exposure(props) or
+ not its.caps.raw16(props)):
+ print "Test skipped"
+ return
successes = []
failures = []
@@ -65,7 +69,7 @@ def main():
[fmt_yuv_prev, fmt_jpg_prev, fmt_raw_full], # F8
[fmt_yuv_prev, fmt_jpg_full, fmt_raw_full]] # F9
- # Two different burst lenghts: single frame, and 3 frames.
+ # Two different burst lengths: single frame, and 3 frames.
burst_lens = [1, # B0
3] # B1