From 3d49fa4f94982aadbf785adaac2d82d433f83159 Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Thu, 2 Feb 2023 09:17:09 +0100 Subject: [PATCH] Insert text files that are guaranteed to be available on all firebird installs --- test/testudrkit-testdata.dml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/testudrkit-testdata.dml b/test/testudrkit-testdata.dml index 7321270..4fef122 100644 --- a/test/testudrkit-testdata.dml +++ b/test/testudrkit-testdata.dml @@ -12,10 +12,12 @@ set bail on; */ commit; +/* + * TODO dynamically generate these file names and descriptions depending upon OS platform. + */ - -insert into test_blobs( description, file_type, source_file ) values ('boot readme', 'txt', '/boot/boot.readme'); -insert into test_blobs( description, file_type, source_file ) values ('xman help', 'txt', '/usr/share/X11/xman.help'); +insert into test_blobs( description, file_type, source_file ) values ('fb config', 'txt', '/opt/firebird/firebird.conf'); +insert into test_blobs( description, file_type, source_file ) values ('fb log', 'txt', '/opt/firebird/firebird.log'); insert into test_blobs( description, file_type, source_file ) values ('computer', 'bin', '/usr/share/icons/Adwaita/48x48/devices/computer.png'); insert into test_blobs( description, file_type, source_file ) values ('git gui icon', 'bin', '/usr/share/git-gui/lib/git-gui.ico');