diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/init.cpp | 16 | ||||
-rw-r--r-- | test/meson.build | 5 |
2 files changed, 0 insertions, 21 deletions
diff --git a/test/init.cpp b/test/init.cpp deleted file mode 100644 index 4ade4e76..00000000 --- a/test/init.cpp +++ /dev/null @@ -1,16 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-or-later */ -/* - * Copyright (C) 2018, Google Inc. - * - * init.cpp - libcamera initialization test - */ - -#include <libcamera/libcamera.h> - -int main(void) -{ - libcamera::libcamera l = libcamera::libcamera(); - l.init_lib(); - - return 0; -} diff --git a/test/meson.build b/test/meson.build index aabe79dd..1394395c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -12,16 +12,11 @@ test_includes_internal = [ libcamera_internal_includes, ] -test_init = executable('test_init', 'init.cpp', - link_with : test_libraries, - include_directories : test_includes_public) - list = executable('list', 'list.cpp', link_with : test_libraries, include_directories : test_includes_public) subdir('media_device') -test('Initialisation test', test_init) test('List Camera API tests', list) test('Media Device Test', media_device_test) |