aboutsummaryrefslogtreecommitdiff
path: root/apps/CameraITS/tests/scene0/test_capture_result_dump.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/CameraITS/tests/scene0/test_capture_result_dump.py')
-rw-r--r--apps/CameraITS/tests/scene0/test_capture_result_dump.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/apps/CameraITS/tests/scene0/test_capture_result_dump.py b/apps/CameraITS/tests/scene0/test_capture_result_dump.py
deleted file mode 100644
index c8b1f8f..0000000
--- a/apps/CameraITS/tests/scene0/test_capture_result_dump.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2014 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-import its.caps
-import its.image
-import its.device
-import its.objects
-import its.target
-import pprint
-
-def main():
- """Test that a capture result is returned from a manual capture; dump it.
- """
-
- with its.device.ItsSession() as cam:
- # Arbitrary capture request exposure values; image content is not
- # important for this test, only the metadata.
- props = cam.get_camera_properties()
- if not its.caps.manual_sensor(props):
- print "Test skipped"
- return
-
- req,fmt = its.objects.get_fastest_manual_capture_settings(props)
- cap = cam.do_capture(req, fmt)
- pprint.pprint(cap["metadata"])
-
- # No pass/fail check; test passes if it completes.
-
-if __name__ == '__main__':
- main()
-