Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Paul Wessel 6a91d32e87
Let GMT_GRAPHICS_DPU be the default in grdview -Qi (#5925)
3 years ago
..
9e052a122d
Fix failure when using +sa for auto grid-range scaling (#5607)
4 years ago
85f7296547
Update copyright year to 2021 (#4619)
4 years ago
74efdca0d1
Be able to exclude tests that are not fail on all platforms (#4543)
4 years ago
4f721c2969
Add the wrapper for testapi_columns (#5566)
4 years ago
85f7296547
Update copyright year to 2021 (#4619)
4 years ago

README.tests

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  1. #
  2. # This is README for the test directory
  3. #
  4. # Each program or theme should have a separate directory
  5. # which may contain any number of Bash (*.sh)
  6. # scripts that tests one or more aspects of the program.
  7. # The script should report a PASS/FAIL grade so
  8. # that it is easy to tell which test failed.
  9. # The animation directory is exempt from these rules.
  10. # Scripts making plots should also have an original PS file
  11. # with the same file prefix as the script (stuff.sh -> stuff.ps).
  12. # In addition, each script that fails should add a single line
  13. # to the file ../fail_count.txt so we may report a total.
  14. #
  15. # Scripts that are known to fail can be excluded from the test
  16. # by adding the comment
  17. #
  18. # # GMT_KNOWN_FAILURE
  19. #
  20. # to the script anywhere. Their failures will be listed in the
  21. # test/fail_count.txt file but not counted by ctest.
  22. #
  23. # If a script is known to fail on a specific platform, you can
  24. # exclude the test by adding one of the following comments:
  25. #
  26. # # GMT_KNOWN_FAILURE_WINDOWS
  27. # # GMT_KNOWN_FAILURE_MACOS
  28. # # GMT_KNOWN_FAILURE_LINUX
  29. #
  30. # Under Linux you can have all module calls be run via valgrind
  31. # in order to track down pesky memory leaks. To do this, cd
  32. # into the build directory and do this:
  33. # 1. Remove old logs with: find . -name '.log' -exec rm -f {} \;
  34. # 2. export VALGRIND_ARGS="--track-origins=yes --leak-check=full"
  35. # Afterwards you can find all the *.log files and examine them.
  36. # On any OS you can activate the full GMT memory tracking by
  37. # setting
  38. # export GMT_TRACK_MEMORY=2
  39. # This assumes you configured GMT via with cmake/ConfigUserAdvanced.cmake
  40. # add_definitions(-DDEBUG)
  41. # add_definitions(-DMEMDEBUG)
  42. #
  43. # P. Wessel, June 2019
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...