We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a44bf9 commit d32075cCopy full SHA for d32075c
tests/driver_manager_tests.rs
@@ -134,27 +134,6 @@ fn test_driver_manager_loads_driver() {
134
}
135
136
137
-/// Test that loading with an incorrect entry point fails gracefully.
138
-#[test]
139
-
140
-fn test_driver_manager_wrong_entry_point_fails() {
141
- skip_if_no_library!();
142
143
- let lib_path = get_library_path();
144
145
- // Try to load with wrong entry point
146
- let driver_result = ManagedDriver::load_dynamic_from_filename(
147
- lib_path,
148
- Some(b"NonExistentDriverInit"),
149
- AdbcVersion::V110,
150
- );
151
152
- assert!(
153
- driver_result.is_err(),
154
- "Loading with wrong entry point should fail"
155
156
-}
157
158
// Section 10.4: Database Creation Tests
159
160
/// Test creating a database via the driver manager.
0 commit comments