aboutsummaryrefslogtreecommitdiff
path: root/testsuite
AgeCommit message (Expand)Author
2020-02-02awk: fix more "length" cases, closes 12486Denys Vlasenko
2020-01-29xargs: fix handling of quoted arguments, closes 11441Ron Yorston
2019-11-23bc: fix comparison bug, closes 12336Denys Vlasenko
2019-09-05dc: Parse error & fix out of bounds read in xc_program_printStringBrian Foley
2019-09-05dc: Fix segfault when executing strings generated using asciifyBrian Foley
2019-09-05dc: execute shouldn't pop if stack head is not a stringBrian Foley
2019-06-08expand,unexpand: drop broken test, add FIXME commentDenys Vlasenko
2019-06-08awk: fix testsuiteDenys Vlasenko
2019-05-26testsuite: fix bunzip2.tests expectationsDenys Vlasenko
2019-05-13sed: fix /regex/,+N match triggering only once, closes 11871Denys Vlasenko
2019-04-19dc.tests: fix two test case to also depend on DC_BIGChen Qi
2019-01-29grep: fix -x -v with certain pattern ordersAri Sundholm
2019-01-25bc: implement pass-by-reference code from upstreamDenys Vlasenko
2019-01-21awk: Fix overly permissive func arg list parsingBrian Foley
2019-01-21awk: Syntax error if delete isn't given an arg.Brian Foley
2019-01-21awk: Guard pointer chasing when parsing ternary expressions.Brian Foley
2019-01-14start-stop-daemon: fix "both -x and -a" case: -a does override argv[0]Denys Vlasenko
2019-01-14start-stop-daemon: create pidfile before parent exits, closes 8596Denys Vlasenko
2019-01-04bc: support void functions (GNU compat)Denys Vlasenko
2019-01-04dc: fit returning of stringDenys Vlasenko
2019-01-04dc: fix '?'Denys Vlasenko
2019-01-03bc: fix "...; return}" to work, disallow "return ()"Denys Vlasenko
2019-01-02bc: generate large bc tests on the fly, -5 mbytes in the git treeDenys Vlasenko
2019-01-02bc: speed up string printing, fix print ""Denys Vlasenko
2019-01-01bc: upstream fixesDenys Vlasenko
2018-12-31bc: support ibase up to 36 (GNU compat)Denys Vlasenko
2018-12-29bc: more fixes for unusual input basesDenys Vlasenko
2018-12-29bc: fix handling of "digits" above 9Denys Vlasenko
2018-12-28bc: rename config optionsDenys Vlasenko
2018-12-26bc: prepare for char-by-char input handlingDenys Vlasenko
2018-12-25bc: fix interactive handling of comments in strings and quotes in commentsDenys Vlasenko
2018-12-25dc: add two testsDenys Vlasenko
2018-12-25bc: allow {break} and {continue} (allow RBRACE to terminate them)Denys Vlasenko
2018-12-22dc: unbreak interactive mode - was trying to get next tokens instead of execu...Denys Vlasenko
2018-12-22bc: unbreak read(), remove checks for nested read()Denys Vlasenko
2018-12-21bc: fix for() to not leave data on stackDenys Vlasenko
2018-12-21bc: for(;;) fix from upstreamDenys Vlasenko
2018-12-20bc: fix keyword matching to not think "ifz" is the "if" keywordDenys Vlasenko
2018-12-18bc: fix "echo -n '#foo' | bc" not eating last 'o'Denys Vlasenko
2018-12-17bc: remove "error after expression parsing" checkDenys Vlasenko
2018-12-16bc: store only index in p->exits, it's the only thing used thereDenys Vlasenko
2018-12-16bc: remove redundant JUMP generation when parsing 'while'Denys Vlasenko
2018-12-16bc: simplify use of "ip" in loop parsing functionsDenys Vlasenko
2018-12-16bc: fix "print 1,2,3" parsingDenys Vlasenko
2018-12-16bc: fold zbc_parse_else() into its only callerDenys Vlasenko
2018-12-16bc: fixes for multi-line if/while/forDenys Vlasenko
2018-12-16bc: fix handling of 'return' not in functions, and 'define f()<newline>{...}'Denys Vlasenko
2018-12-16bc: partially rewrite parser, tests pass, ^C might be broken nowDenys Vlasenko
2018-12-15bc: lexer debugging, added some failing test casesDenys Vlasenko
2018-12-13bc: fix another thinkoDenys Vlasenko