summaryrefslogtreecommitdiff
path: root/test/regress
Commit message (Collapse)AuthorAgeFilesLines
...
* More improvements to nail_down; fixes #715John Wiegley2012-03-191-0/+17
|
* Fixed bug relating to historical pricingJohn Wiegley2012-03-182-1/+20
| | | | Fixes #681
* Fix problem with -H and lack of pricing infoJohn Wiegley2012-03-181-0/+10
| | | | Fixes #691
* Simplified a regression testJohn Wiegley2012-03-171-21/+21
|
* Fixed #711: Parsing of alias directiveJohn Wiegley2012-03-171-0/+27
|
* Added regression test for A8FCC765John Wiegley2012-03-172-0/+10
|
* Don't allow trailing ws in abbrev. account segmentsJohn Wiegley2012-03-161-0/+8
| | | | Fixes #358
* Improved error reporting for bad account namesJohn Wiegley2012-03-161-0/+34
| | | | Fixes #374
* Correct parsing of automated xact expressionsJohn Wiegley2012-03-161-0/+32
| | | | Fixes #458
* Improved error reports about leading whitespaceJohn Wiegley2012-03-164-1174/+38
|
* Added regression test for #584John Wiegley2012-03-161-0/+23
|
* pricedb was outputting redundant pricesJohn Wiegley2012-03-161-0/+11
| | | | Fixes #704
* Unexpected initial whitespace is an error (again)John Wiegley2012-03-163-1/+1222
| | | | Fixes #565
* Don't map_prices if price commodity matches sourceJohn Wiegley2012-03-151-0/+17
| | | | Fixes #680
* Added regression test for #438John Wiegley2012-03-141-0/+74
|
* Added two regressions tests from Thierry DaucourtJohn Wiegley2012-03-142-0/+117
|
* Allow payee names to contain multiple spacesJohn Wiegley2012-03-121-0/+17
|
* Tighten up argument passing related to fn_market()John Wiegley2012-03-111-6/+6
|
* Allow balances to be passed to nail_downJohn Wiegley2012-03-111-0/+18
| | | | Fixes #679
* Corrected a rounding error in nail_downJohn Wiegley2012-03-111-0/+17
| | | | Fixes #678
* Improved the behavior of -XJohn Wiegley2012-03-091-0/+43
|
* Added amount_t::commodity_ptr()John Wiegley2012-03-091-6/+6
|
* All tests are working again but oneJohn Wiegley2012-03-051-6/+6
|
* Implemented first cut at price conversion logicJohn Wiegley2012-03-051-1/+1
|
* Corrected problem with parsing of leap daysJohn Wiegley2012-02-281-0/+12
|
* Corrected behavior of >= and <=John Wiegley2012-02-281-0/+25
|
* Apply timelog time to the check-in dayJohn Wiegley2012-02-281-0/+6
| | | | Fixes #546
* Allow xact notes on periodic transactionsJohn Wiegley2012-02-281-0/+20
| | | | Fixes #448
* Rewrite the way interval reports are generatedJohn Wiegley2012-02-281-0/+552
|
* Added regression test for #657John Wiegley2012-02-271-0/+25
|
* Corrected two testsJohn Wiegley2011-02-121-36/+26
|
* Changed testing format to aid with debuggingJohn Wiegley2011-02-1238-151/+149
|
* Removed needless "=== 0" and ">>>2" lines from test filesJohn Wiegley2011-02-1228-61/+0
|
* Increase display precision of hours to 2 placesJohn Wiegley2010-12-121-3/+3
|
* Added regression test for 7C44010BJohn Wiegley2010-08-161-0/+30
|
* Added regression test for 9EB10714John Wiegley2010-08-161-0/+43
|
* Based symbol_needs_quotes an invalid_chars (#386)John Wiegley2010-07-291-0/+9
|
* Fixed typo in previous commit's regression testJohn Wiegley2010-06-211-1/+1
|
* bal was sometimes reporting empty accountsJohn Wiegley2010-06-211-0/+17
|
* Change weighting of account-name abbreviationJohn Wiegley2010-06-212-2/+2
| | | | | Parent accounts are abbreviated even more, so that child accounts can show more text.
* Added a regression test for the previous commitJohn Wiegley2010-06-211-0/+12
|
* Added missing call to resolve_end() in find_periodJohn Wiegley2010-06-201-0/+72
|
* If fixated price commodities are mixed, show themJohn Wiegley2010-06-201-0/+33
| | | | | | | | | | | For example, if a Ledger file contains transactions with the use of both EUR and EUR {=PRICE}, then regular reports will always show the {=PRICE}, disabling the by-name commodity merging that takes place. In brief, fixated and non-fixated commodities are now non-mergable. If a file contains all of one, or all of the other, they will still be merged, since these separate usages do not conflict the way that fixated and non-fixated together do.
* Regression test for last commitJohn Wiegley2010-06-201-0/+24
|
* Subsantial fixes and improvements to budgetingJohn Wiegley2010-06-191-3/+3
| | | | | | | | | 1. A bounded budget "from DATE to DATE" will now generate entries throughout that entire range, if it is triggered. 2. An unbounded budget begins, as before, in the timeframe of the reported posting which triggered it, but now continues until the present date.
* Improved algorithm for abbreviating account namesJohn Wiegley2010-06-145-13/+13
|
* Corrected bug with forecasting date bounded xactsJohn Wiegley2010-06-131-0/+2
|
* Add support for typed metadataJohn Wiegley2010-06-121-0/+2
| | | | | | | | | | The metadata construct 'Key: Value' is now just a special case for 'Key:: "Value"'. Another after a :: in metadata setting is parsed as a full value expression and typed as such. For example: ; Key:: $400 + $500 ledger -l 'tag("Key") < $1000'
* Untabified all source filesJohn Wiegley2010-06-113-18/+18
|
* New display flag AMOUNT_PRINT_ELIDE_COMMODITY_QUOTESJohn Wiegley2010-06-091-6/+6
| | | | | | | | This is used by reports like register and balance so that separated commodities without spaces in them needed be surrounded by quotes. It will still occur in most other places. Fixes #200 / F82CF11F-BFD9-4512-A562-202B04B68051