-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Created VSIError to report VSI errors. #98
Closed
Closed
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9164eb1
Created VSIError to report VSI errors.
lossyrob 213ec02
Added autotest to vagrant sync folders
lossyrob 73d14b3
Changed vsil_crypt Open to to take additional bool parameter.
lossyrob 9357020
Use int instead of bool for C API
lossyrob bb64a68
Merged in trunk.
lossyrob a2c914f
Account for a NULL XML message in AWS error handling.
lossyrob 6650156
Changed VSIErrorV to private static; don't return bool from C API fun…
lossyrob 7981479
Include cpl_vsi_error.obj in makefile.vc
lossyrob f5bb1ed
Fixed comment for VSItoCPLError
lossyrob 16f6230
Added VSIError calls to swig bindings.
lossyrob 8e17293
Fixed test that should now be expected VSIError message.
lossyrob 6ee58bd
Set VSI errors in S3 streaming during read call.
lossyrob 38a8687
Fixes tests to work with VSI errors.
lossyrob 208a530
Generate python bindings during Travis CI
lossyrob 7a1887e
Don't use CPL_DLL on static private functions; use TRUE and FALSE ins…
lossyrob 88d28b6
Merge remote-tracking branch 'upstream/trunk' into vsierror
lossyrob 2d8556a
Modified basic_test.py to work with both windows and mac/linux.
lossyrob File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm afraid this will not pass on Windows
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True. I got the impression that the autotest was only running on Linux (it still fails my mac in some ways, even trunk, whereas Travis passes). Are the autotests targeted to work across all platforms? If so, do you have suggestions on how to test on Windows?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The autotest also run on Windows and Mac.
For Windows, there's an AppVeyor config in this branch : https://github.com/rouault/gdal_coverage/blob/trunk_vc12_full/appveyor.yml . It could/should probably be merged into main repo. For now, master is merged regularly in this branch.
For Mac, this is https://github.com/rouault/gdal_coverage/blob/trunk_travis_macosx/.travis.yml . Could probably be unified into the main travis.yml with some matrix logic.
With the current setup, I guess you could probably fork that repo and merge your branch into the 2 above branches, and create PR to trigger the builds ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I'll give that a shot once I get the travis build to pass in this repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, the way you have the branches set up, I don't believe that will work. I'll try to find another way to test on Windows.