summaryrefslogtreecommitdiffstats
path: root/libacc/tests/test
Commit message (Collapse)AuthorAgeFilesLines
* Remove ACC which has been replaced with llvm.Jason Sams2010-09-011-6/+0
| | | | | | Free up space in build. Change-Id: Ic5cc48bacca47b45809b9bc649ae5b629b7427ed
* Allow parenthesized expressions as the value of definesJack Palevich2009-08-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | For example, this now works: #define A (1 + 2) Note that we still don't support defines with argument lists, so this is still illegal: #define A(X) (X + 2) Also in this change: The compiler test script allows command-line arguments to disable testing on ARM and to disable testing the output of the old OTCC compiler. Disabling testing on ARM is handy for developing front-end code when no device or emulator is available. Disabling testing OTCC output is handy for some 64-bit Linux environments, because the original OTCC needs some tweaking to be fully compatible, and I don't have time to investigate this problem right now.
* Rewrite compiler test using python.Jack Palevich2009-06-251-0/+6
Nice because we're now checking the output for success/failure automatically rather than by eye.