summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Fix Flake8 Errors (#442)Eisuke Kawashima2021-10-154-8/+2
* Implement C23 _Static_assert without message (#440)Vitaly Cheptsov2021-10-053-1/+8
* Implement u8, u, and U strings from C11 (#439)Vitaly Cheptsov2021-10-052-0/+17
* Improve recursive comparison of ASTs in test_c_generator and enable testsEli Bendersky2021-10-041-31/+48
* Implement _Alignas and _Alignof support with tests (#435)Vitaly Cheptsov2021-10-044-3/+59
* Clean up some commentsEli Bendersky2021-09-201-5/+1
* Improve _Atomic support and add more tests (#431)Vitaly Cheptsov2021-09-203-31/+74
* Fix declname for _Atomic specifiers, and add c-to-c testsEli Bendersky2021-09-141-0/+25
* A different, more robust appoach to fix _Atomic specifiers.Eli Bendersky2021-09-131-3/+18
* Implement atomic specifiers like _Atomic(int*).Eli Bendersky2021-09-131-0/+12
* Support _Atomic as a qualifierEli Bendersky2021-09-133-1/+17
* Add comments and clean up whitespaceEli Bendersky2021-08-312-1/+16
* Introduce partial C11 support (#429)Vitaly Cheptsov2021-08-315-18/+100
* Add a tricky test, and reformat some commentsEli Bendersky2021-08-281-0/+12
* Add thornier tests for nested pointers with qualifiers in declarationsEli Bendersky2021-08-281-0/+18
* Clean whitespaceEli Bendersky2021-08-281-1/+1
* c_parser: support parenthesized compounds (#423)Jordan Yates2021-07-071-0/+53
* Extra line breaks when c_ast.If are chained (#401)Patricio Inzaghi2020-12-091-0/+16
* Simplify test execution (#400)Jon Dufresne2020-12-083-21/+1
* Rename test and add lower-level testingEli Bendersky2020-10-051-1/+7
* Clean up commentsEli Bendersky2020-10-051-3/+0
* Added flattening of abundant parenthesis in CGenerator (#394)Julian2020-10-051-5/+28
* Add test for https://github.com/eliben/pycparser/issues/392Eli Bendersky2020-09-301-0/+10
* Fix #349: convert to raw strings in lexer tests (#389)hodbn2020-08-181-2/+2
* Fix issues #378, #379, #385 (#387)Zecong Hu2020-07-182-0/+46
* Fix #363 incorrect AST when parsing offsetof (#364)Zecong Hu2020-03-031-0/+24
* Recognize integer multicharacter constants like 'ABCD' (#350)yaroslav-o2019-09-251-4/+8
* Fix slow backtracking when parsing strings (no external deps) (#347)Tyson Andre2019-08-261-1/+30
* Fix error transforming an empty switch (#346)Tyson Andre2019-08-211-0/+14
* Clean up extra whitespaceEli Bendersky2019-06-271-1/+0
* Fix issue #99: parser for FuncDecl incorrectly sets declname attribute on ret...Saullo Carvalho Castelo Branco2019-06-271-2/+40
* Fix issue #314: Failed parsing unnamed function parameters with array dim qua...Saullo Carvalho Castelo Branco2019-06-011-0/+25
* Fix issue #324: u/l constant integer suffix (#326)Kevin2019-05-091-1/+17
* Generate pointer types correctly (#315)Amir Gonnen2019-03-271-2/+16
* Fix array type generation (#312) (#313)Amir Gonnen2019-03-261-0/+6
* Fix crash when file starts with a semicolon (#310)Simon Lindholm2019-03-061-0/+22
* extended and cleaned up #pragma testcases (#297)Julian2018-12-071-5/+15
* Add test for parsing a hex float constant to the right typeEli Bendersky2018-08-311-0/+3
* Correct Parsing of Floating Point Literals, issue #253 (#277)Robbert Harms2018-08-311-0/+21
* Merge branch 'master' of github.com:eliben/pycparserEli Bendersky2018-07-253-64/+65
|\
| * Use more specific assertIsInstance in tests (#268)Jon Dufresne2018-06-263-64/+64
| * Avoid opening files with deprecated 'U' mode (#269)Jon Dufresne2018-06-261-1/+2
* | Add tests for empty struct/union typedeclsEli Bendersky2018-07-251-2/+10
* | Trim whitespace in test fileEli Bendersky2018-07-251-4/+4
|/
* Add test for "const volatile int*" parsingEli Bendersky2018-06-151-0/+8
* Add support for empty struct (#66) (#254)ldore2018-04-272-0/+32
* Fix non-generated constant expressions in designated initializers (#246) (#255)ldore2018-04-261-0/+5
* Fixed enum formatting in generating C code (issue #240). (#243)Seth Poulsen2018-03-161-17/+17
* Fix #235: Pragma displacing real statements (#236)dbluhm2018-03-031-0/+48
* Implement __repr__ on Nodes (Issue #226) (#227)ldore2018-01-171-2/+51