diff --git a/test/testudrkit.sql b/test/testudrkit.sql index 83f6c67..cb27cdf 100644 --- a/test/testudrkit.sql +++ b/test/testudrkit.sql @@ -5,23 +5,24 @@ set names UTF8; input recreate_db.ddl; -- deploy the UDR library -shell cp ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ; +shell cp -L ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ; + +-- declare the UDR library - must be done before we declare database objects! +input ../sql/MyFirstUDRKit.ddl; -- create db objects input testudrkit.ddl; --- declare the UDR library -input ../sql/MyFirstUDRKit.ddl -- insert some test data -input testudrkit.dml; +input testudrkit-testdata.dml; -- run some tests input testudrkit-tests.dml; /* Successfully completed execution of testudrkit.sql */ -EXIT; +exit;