summaryrefslogtreecommitdiff
path: root/test/v4l2_device/double_open.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/v4l2_device/double_open.cpp')
-rw-r--r--test/v4l2_device/double_open.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/v4l2_device/double_open.cpp b/test/v4l2_device/double_open.cpp
deleted file mode 100644
index 53850620..00000000
--- a/test/v4l2_device/double_open.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-/*
- * Copyright (C) 2019, Google Inc.
- *
- * libcamera V4L2 API tests
- */
-
-#include <iostream>
-
-#include "v4l2_device_test.h"
-
-namespace {
-
-class DoubleOpen : public V4L2DeviceTest
-{
-public:
- DoubleOpen()
- : V4L2DeviceTest("vimc", "Raw Capture 0") {}
-protected:
- int run()
- {
- int ret;
-
- /*
- * Expect failure: The device has already been opened by the
- * V4L2DeviceTest base class
- */
- ret = capture_->open();
- if (!ret) {
- std::cout << "Double open erroneously succeeded" << std::endl;
- capture_->close();
- return TestFail;
- }
-
- return TestPass;
- }
-};
-
-} /* namespace */
-
-TEST_REGISTER(DoubleOpen);