-
-
Notifications
You must be signed in to change notification settings - Fork 311
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
lib/btree2: add kdtree test #4797
Open
neteler
wants to merge
3
commits into
OSGeo:main
Choose a base branch
from
neteler:lib_btree2_kdtree_test
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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 PR adds the kdtree test proposed in OSGeo#4779. At time the test triggers a segmentation fault: ```bash make [...] make lib make[1]: Entering directory '/home/mneteler/software/grass_main/lib/btree2' if [ "" != "" -a -f "".html ] ; then make html ; fi make[1]: Leaving directory '/home/mneteler/software/grass_main/lib/btree2' ==============TEST============= make test make[1]: Entering directory '/home/mneteler/software/grass_main/lib/btree2' gcc -g -Wall -Wstringop-truncation -Wshadow -Wlogical-op -Werror-implicit-function-declaration -fPIC -fno-common -fno-omit-frame-pointer -fexceptions -Wextra -Wunused -Wreturn-type -Wfatal-errors -march=native -std=gnu99 -fexceptions -fstack-protector -m64 -fdiagnostics-color -fPIC -I/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/include -I/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/include -DPACKAGE=\""grasslibs"\" -I/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/include -I/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/include -DRELDIR=\"lib/btree2\" -o OBJ.x86_64-pc-linux-gnu/test.o -c test.c test.c: In function ‘main’: test.c:18:14: warning: unused parameter ‘argc’ [-Wunused-parameter] 18 | int main(int argc, char *argv[]) | ~~~~^~~~ test.c:18:26: warning: unused parameter ‘argv’ [-Wunused-parameter] 18 | int main(int argc, char *argv[]) | ~~~~~~^~~~~~ : && gcc -L/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/lib -L/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/lib -Wl,--no-undefined -Wl,-z,now -Wl,--export-dynamic -Wl,-rpath-link,/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/lib -Wl,-rpath,/usr/local/grass85/lib -Wl,-soname,test -o OBJ.x86_64-pc-linux-gnu/test OBJ.x86_64-pc-linux-gnu/test.o -lgrass_gis.8.5 -lgrass_btree2.8.5 -lgrass_gis.8.5 -lm GISRC=/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/demolocation/.grassrc85 GISBASE=/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu PATH="/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/bin:/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/bin:/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/scripts:$PATH" PYTHONPATH="/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/etc/python:/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/gui/wxpython:$PYTHONPATH" LD_LIBRARY_PATH="/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/bin:/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/bin:/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/scripts:/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/lib:/home/mneteler/software/grass_main/dist.x86_64-pc-linux-gnu/lib:" LC_ALL=C LANG=C LANGUAGE=C OBJ.x86_64-pc-linux-gnu/test kdtree insert[uid:0](7.43, 5.41) :[1][success] kdtree insert[uid:1](16.27, 13.36) :[1][success] kdtree insert[uid:2](15.87, 19.59) :[1][success] kdtree insert[uid:3](12.32, 3.86) :[1][success] [...] kdtree insert[uid:2](3.67, 10.96) :[1][success] kdtree insert[uid:3](5.67, 6.99) :[1][success] kdtree insert[uid:4](5.67, 6.99) :[0][failure] kdtree remove[uid:0](19.78, 18.10) :[1][success] kdtree remove[uid:1](4.44, 10.85) :[1][success] kdtree remove[uid:2](3.67, 10.96) :[1][success] kdtree remove[uid:3](5.67, 6.99) :[1][success] make[1]: *** [Makefile:27: test] Segmentation fault (core dumped) ```
nilason
reviewed
Dec 3, 2024
Co-authored-by: Nicklas Larsson <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR adds the kdtree test proposed by @ynkan in #4779.
At time the test triggers a segmentation fault: