summaryrefslogtreecommitdiffstats
path: root/testing
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Spelling corrections for testing directoryalbert-github2019-11-043-3/+3
| | | | | | | | | | | | | | | | | | Spelling corrections as found by codespell and in #561. Most reported problems were already fixed, others are fixed here.
* | | issue #7302: Determination of anonymous is too restrictiveDimitri van Heesch2019-11-052-6/+6
|/ /
* | Fix some typos luz.paz2019-09-1610-10/+10
|/
* Merge branch 'fetaure/bug_html_ins_del_tag' of ↵Dimitri van Heesch2019-08-032-0/+30
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-fetaure/bug_html_ins_del_tag
| * Adding HTML tags ins and delalbert-github2019-04-042-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Github does not support the `<u>` tag for underlined text, in HTML there exists the tag `<ins>`. On https://www.w3schools.com/tags/tag_ins.asp is written: The `<ins>` tag defines a text that has been inserted into a document. Browsers will normally strike a line through deleted text and underline inserted text. Most browsers will display the `<ins>` element with the following default values: ``` ins { text-decoration: underline; } ``` analogous there exists the tag `<del>` (https://www.w3schools.com/tags/tag_del.asp): The `<del>` tag defines text that has been deleted from a document. Browsers will normally strike a line through deleted text and underline inserted text. Most browsers will display the `<del>` element with the following default values: ``` del { text-decoration: line-through; } ``` Definitions analogue to the underline and strike through tag the implementation for the other formats has been chosen.
* | Merge pull request #7086 from albert-github/feature/regr_7061Dimitri van Heesch2019-07-291-0/+0
|\ \ | | | | | | regression #7061 Rename test file
| * | regression #7061 Rename test filealbert-github2019-06-271-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to a regression on #7061 travis showed message: ``` not ok 71 - [071_enum_in_anon_ns.cpp]: test that enum values in anonymous namespaces produce no warning ------------------------------------- /home/travis/build/doxygen/doxygen/testing/071/namespace_a_namespace_1_1_0d0.xml absent ------------------------------------- ```
* | | chmod +x runtest.pyAdrian Negreanu2019-07-261-0/+0
|/ /
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-06-221-1/+1
|\ \
| * \ Merge pull request #7034 from albert-github/feature/issue_7033Dimitri van Heesch2019-06-221-1/+1
| |\ \ | | | | | | | | issue #7033 Syntax highlighting doesn't work when calling \dontinclude from Markdown files
| | * | issue #7033 Syntax highlighting doesn't work when calling \dontinclude from ↵albert-github2019-06-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Markdown files Don't use the file name extension of the including file but of the included file. In case of no included filename or no extension, fall back of the file extension of the including file.
* | | | Fixed issues in introduced by making file name escapes lower caseDimitri van Heesch2019-06-221-1/+1
|/ / /
* | | Upper case characters in filename despice CASE_SENSE_NAME=NOalbert-github2019-06-171-1/+1
| | | | | | | | | | | | In case special characters in a filename need escaping into something like: `_0` the `0` should not be followed by an uppercase character as this would be in contradiction wit the setting `CASE_SENSE_NAMES=NO`.
* | | Missing brief descriptions with `\defgroup`albert-github2019-06-133-3/+3
|/ / | | | | | | Test 19 was incorrect, didn't show group description either (see make tests TEST_FLAGS="--keep --xhtml --id=19"
* | updated test case to reflect new node numberingThomas Haller2019-05-245-48/+48
| |
* | Create option to enable CLANG_ASISTED_PARSING in test suitealbert-github2019-04-281-0/+5
|/ | | | | | Create possibility to use CLANG_ASSISTED_PARSING, works only when doxygen has been compiled with "use_libclang" Note at this moment the test suite gives an error, see issue #6948
* Add possibility of checking XML against XSD in doxygen testsalbert-github2019-03-181-9/+66
| | | | Added option `--xmlxsd` to check generated XML files against XSD in the doxygen tests suite.
* Merge pull request #6836 from albert-github/feature/bug_xhtml_dtd_2Dimitri van Heesch2019-02-171-6/+0
|\ | | | | Adjustment of xhtml1-transitional.dtd
| * Adjustment of xhtml1-transitional.dtdalbert-github2019-02-161-12/+0
| | | | | | | | After small discussion conclusion was better to remove the obsolete `doxygen=`
| * Adjustment of xhtml1-transitional.dtdalbert-github2019-02-131-0/+6
| | | | | | | | | | | | | | | | Adding attributes: - doxygen to be able to validate doxygen generated xhtml documents. Analogous to #6681 but now for the area tag (found in the doxygen tag example).
* | Remove persistent storage of Entry objectsDimitri van Heesch2019-02-1766-506/+506
|/
* Merge pull request #6776 from albert-github/feature/bug_xhtml_tooltipDimitri van Heesch2019-02-092-0/+88
|\ | | | | Double id for tooltips in XHTML possible.
| * Double id for tooltips in XHTML Possible.albert-github2019-01-182-0/+88
| | | | | | | | The tooltips (XHTML) should not be displayed per code fragment but for the entire (output) file as otherwise tooltips might be added multiple times resulting in double IDs.
* | issue #6791 TOC not generated when using a particular Markdown header stylealbert-github2019-01-211-31/+31
|/ | | | Update test
* Merge: moved example from 081 to 084, improved check if last char is newlineDimitri van Heesch2019-01-133-8/+8
|
* Merge branch 'feature/bug_pre_markdown' of ↵Dimitri van Heesch2019-01-132-0/+69
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_pre_markdown
| * No translation of markdown in <pre>albert-github2019-01-112-0/+69
| | | | | | | | | | | | | | | | | | According to the documentation: Doxygen does not have this requirement, and will also process Markdown formatting inside such HTML blocks. The only exception is <pre> blocks, which are passed untouched (handy for ASCII art). Though in case the `</pre>` is the last statement in a non block type comment the markdown is processed. C has block type /* ... */ and /// is translated to this, Fortran, Python are line type comments. Adding a `\n` at the when no `\n` is present at the end solves the problem.
* | Merge: reorder testsDimitri van Heesch2019-01-125-129/+129
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-01-122-0/+144
|\ \
| * | Terminate brief in case of `-#` listalbert-github2019-01-112-0/+144
| |/ | | | | | | Test case.
* | Added declfile, declline, and declcolumn attributes to the location element ↵Dimitri van Heesch2019-01-1223-417/+563
|/ | | | in the XML output
* Merge pull request #6738 from albert-github/feature/issue_6733Dimitri van Heesch2019-01-105-54/+128
|\ | | | | issue #6733 invalid cite anchor id when using crossref
| * issue #6733 invalid cite anchor id when using crossrefalbert-github2019-01-041-20/+45
| | | | | | | | Also test 050 was hit by the change of samlpe.bib
| * issue #6733 invalid cite anchor id when using crossrefalbert-github2019-01-044-34/+83
| | | | | | | | | | | | | | The crossreference possibility was not properly taken into account in bibtex conversion for other formats than LaTeX. - doxygen.bst: use correct labels (i.e. add 'CITEREF_' in case of crossreferences to the giver name) - cite.cpp: add the crossreferences to the citation dictionary (to overcome warning message). - extending test 012
* | Shortened EXTRACT_PRIVATE_VIRTUAL to EXTRACT_PRIV_VIRTUAL to deal with max ↵Dimitri van Heesch2019-01-082-7/+7
| | | | | | | | length limitation
* | Merge branch 'extract-private-virtual' of https://github.com/mosra/doxygen ↵Dimitri van Heesch2019-01-082-0/+145
|\ \ | | | | | | | | | into mosra-extract-private-virtual
| * | Implement a new EXTRACT_PRIVATE_VIRTUAL option.Vladimír Vondruš2019-01-032-0/+145
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The classic article about virtuality from Herb Sutter [1] suggests that virtual functions are always private and public class interface is never virtual. Until now, it was not really possible to document these functions in Doxygen: * Enabling EXTRACT_PRIVATE would show all internals, not just virtual functions, which is not wanted. * Enabling HIDE_UNDOC_MEMBERS and HIDE_UNDOC_CLASSES would effectively disable warnings about *all* undocumented members, which is not wanted. The usual workaround was to put the members into protected scope just for Doxygen: #ifdef DOXYGEN_GENERATING_OUTPUT protected: #else private: #endif /** @brief Documented private virtual function */ virtual doStuff(); The new EXTRACT_PRIVATE_VIRTUAL option makes these visible (and able to be linked to), but shows them *only* if they are documented. [1] http://www.gotw.ca/publications/mill18.htm
* | | Warning messages of test 66albert-github2019-01-062-52/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | Test 66 gives some warning messages bout not documented entities: .../testing/066_property_initializer.cs:4: warning: Compound Class1 is not documented. .../testing/066_property_initializer.cs:5: warning: Member Property1 (property) of class Class1 is not documented. .../testing/066_property_initializer.cs:6: warning: Member Property2 (property) of class Class1 is not documented. The entities have been documented.
* | | issue #6744 Ampersand in Markdown image URL is not escaped in XML outputalbert-github2019-01-062-48/+61
| | | | | | | | | | | | Convert name / url based on HTML / XML conventions and don't do double conversions (XML).
* | | Merge pull request #6743 from albert-github/feature/bug_sorting_testsDimitri van Heesch2019-01-051-1/+1
|\ \ \ | | | | | | | | Tests are unsorted
| * | | Tests are unsortedalbert-github2019-01-051-1/+1
| | | | | | | | | | | | | | | | When requesting all tests they are sorted in the way `glob.glob` returns them, i.e. unsorted, better, more intuitive and easier for finding problems, would be sorted.
* | | | Merge pull request #6742 from albert-github/feature/bug_xhtml_test_074Dimitri van Heesch2019-01-053-369/+373
|\ \ \ \ | | | | | | | | | | Double defined operator in test 74
| * | | | Double defined operator in test 74albert-github2019-01-053-369/+373
| |/ / / | | | | | | | | | | | | | | | | | | | | In test 074 the operator `&=` was identically defined twice, now corrected with const. In XHTML this resulted in error: `struct_foo.xhtml:204: element a: validity error : ID aa20bd44b1bb87a652ac65170ddfa1a5a already defined`
* | | | Fixed alt attribute appearing in <object> tag for SVG imagesDimitri van Heesch2019-01-051-1/+1
|/ / /
* | | Fixed missing end paragraph marker when inline image appeared as last item.Dimitri van Heesch2019-01-051-2/+3
| |/ |/|
* | Issue #6039: Links on image in Markdown (Origin: bugzilla #769223)Dimitri van Heesch2019-01-032-7/+82
|/
* Merge pull request #6713 from mosra/testingDimitri van Heesch2018-12-314-11/+117
|\ | | | | Test suite and developer-facing improvements
| * testing: improve tests for \ref.Vladimír Vondruš2018-12-293-11/+117
| | | | | | | | | | | | Tests for C++11 user-defined literals from https://github.com/doxygen/doxygen/issues/6299 were missing, adding them to avoid the regression re-appearing in the future.
| * testing: make runtests.py executable.Vladimír Vondruš2018-12-291-0/+0
| | | | | | | | | | | | | | | | | | | | So one can do just ./runtests.py on Unix-like systems, instead of the unusual python runtests.py
* | testing: add a test for TOC levels in the XML output.Vladimír Vondruš2018-12-292-0/+58
| | | | | | | | For good measure, this one works.