summaryrefslogtreecommitdiff
path: root/test/file.cpp
AgeCommit message (Expand)Author
2021-12-01test: Replace "/proc/self/exe" with path to test binaryLaurent Pinchart
2021-08-03libcamera: file: Turn MapFlag and OpenModeFlag into enum classLaurent Pinchart
2021-06-25libcamera/base: Move File to base libraryKieran Bingham
2020-12-30test: file: Check that directories are not treated as filesKieran Bingham
2020-07-15test: file: Add file creation testLaurent Pinchart
2020-07-15test: file: Add read/write testsLaurent Pinchart
2020-06-02test: Fixed the compilation issueMadhavan Krishnan
2020-05-16libcamera: Move internal headers to include/libcamera/internal/Laurent Pinchart
2020-04-14test: Add File class testsLaurent Pinchart
'span.cpp'], ] internal_tests = [ ['bayer-format', 'bayer-format.cpp'], ['byte-stream-buffer', 'byte-stream-buffer.cpp'], ['camera-sensor', 'camera-sensor.cpp'], ['delayed_controls', 'delayed_controls.cpp'], ['event', 'event.cpp'], ['event-dispatcher', 'event-dispatcher.cpp'], ['event-thread', 'event-thread.cpp'], ['file', 'file.cpp'], ['file-descriptor', 'file-descriptor.cpp'], ['hotplug-cameras', 'hotplug-cameras.cpp'], ['mapped-buffer', 'mapped-buffer.cpp'], ['message', 'message.cpp'], ['object', 'object.cpp'], ['object-delete', 'object-delete.cpp'], ['object-invoke', 'object-invoke.cpp'], ['pixel-format', 'pixel-format.cpp'], ['signal-threads', 'signal-threads.cpp'], ['threads', 'threads.cpp'], ['timer', 'timer.cpp'], ['timer-thread', 'timer-thread.cpp'], ['utils', 'utils.cpp'], ] foreach t : public_tests exe = executable(t[0], t[1], dependencies : libcamera_dep, link_with : test_libraries, include_directories : test_includes_public) test(t[0], exe) endforeach foreach t : internal_tests exe = executable(t[0], t[1], dependencies : libcamera_dep, link_with : test_libraries, include_directories : test_includes_internal) test(t[0], exe) endforeach