summaryrefslogtreecommitdiffstats
path: root/tests/camera2/CameraStreamFixture.h
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2013-02-11 15:52:03 -0800
committerIgor Murashkin <iam@google.com>2013-02-21 17:11:27 -0800
commit7a7f357509df38a37479e2968144a2996e1f964c (patch)
tree5c9c0edab4b45a5e1e0b85cce4d78c58346c6509 /tests/camera2/CameraStreamFixture.h
parent9f6e4bf9013e773a3ba24362f5eec81ccee65454 (diff)
downloadhardware_libhardware-7a7f357509df38a37479e2968144a2996e1f964c.zip
hardware_libhardware-7a7f357509df38a37479e2968144a2996e1f964c.tar.gz
hardware_libhardware-7a7f357509df38a37479e2968144a2996e1f964c.tar.bz2
Tests: Camera2: Add Y8/Y16 to Stream create/delete tests
Change-Id: I7e066569edcab84c0d61fe7a4ae5c3e2683f63eb
Diffstat (limited to 'tests/camera2/CameraStreamFixture.h')
-rw-r--r--tests/camera2/CameraStreamFixture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/camera2/CameraStreamFixture.h b/tests/camera2/CameraStreamFixture.h
index 531d3c0..c7bcc54 100644
--- a/tests/camera2/CameraStreamFixture.h
+++ b/tests/camera2/CameraStreamFixture.h
@@ -39,8 +39,8 @@ struct CameraStreamParams {
inline void PrintTo(const CameraStreamParams& p, ::std::ostream* os) {
*os << "{ ";
- *os << "Format: " << p.mFormat << ", ";
- *os << "HeapCount: " << p.mHeapCount;
+ *os << "Format: 0x" << std::hex << p.mFormat << ", ";
+ *os << "HeapCount: " << p.mHeapCount;
*os << " }";
}