aboutsummaryrefslogtreecommitdiff
path: root/apps/CameraITS/tests/scene1/test_raw_sensitivity.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/CameraITS/tests/scene1/test_raw_sensitivity.py')
-rw-r--r--apps/CameraITS/tests/scene1/test_raw_sensitivity.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/CameraITS/tests/scene1/test_raw_sensitivity.py b/apps/CameraITS/tests/scene1/test_raw_sensitivity.py
index 9845623..7c8eccd 100644
--- a/apps/CameraITS/tests/scene1/test_raw_sensitivity.py
+++ b/apps/CameraITS/tests/scene1/test_raw_sensitivity.py
@@ -13,9 +13,9 @@
# limitations under the License.
import its.device
+import its.caps
import its.objects
import its.image
-import pprint
import os.path
import pylab
import matplotlib
@@ -35,6 +35,11 @@ def main():
with its.device.ItsSession() as cam:
props = cam.get_camera_properties()
+ if (not its.caps.raw16(props) or
+ not its.caps.manual_sensor(props) or
+ not its.caps.read_3a(props)):
+ print "Test skipped"
+ return
# Expose for the scene with min sensitivity
sens_min, sens_max = props['android.sensor.info.sensitivityRange']