Denys Vlasenko 
							
						 
					 
					
						
						
							
						
						19c9f31af1 
					 
					
						
						
							
							nofork: fix a bug uncovered by hush testsuite (forgotten fflush)  
						
						 
						
						... 
						
						
						
						function                                             old     new   delta
run_nofork_applet                                    280     287      +7
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com > 
						
						
					 
					
						2017-08-03 19:52:47 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Vlasenko 
							
						 
					 
					
						
						
							
						
						9a8ece5158 
					 
					
						
						
							
							shell: syncronize ash_test/run-all and hush_test/run-all a bit  
						
						 
						
						... 
						
						
						
						Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com > 
						
						
					 
					
						2017-07-06 17:59:25 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Vlasenko 
							
						 
					 
					
						
						
							
						
						215b0ca6e4 
					 
					
						
						
							
							hush: fix a bug in FEATURE_SH_STANDALONE=y config. Closes 9186  
						
						 
						
						... 
						
						
						
						Run this in a "sh SCRIPT":
sha256sum /dev/null
echo END
sha256sum is a NOEXEC applet. It runs in a forked child. Then child exit()s.
By this time, entire script is read, and buffered in a FILE object
from fopen("SCRIPT"). But fgetc() did not consume entire input.
exit() lseeks back by -9 bytes, from <eof> to 'e' in 'echo'.
(this may be libc-specific).
This change of fd position *is shared with the parent*!
Now parent can read more, and it thinks there is another "echo END".
End result: two "echo END"s are run.
Fix this by _exit()ing instead.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com > 
						
						
					 
					
						2016-08-19 18:43:06 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Vlasenko 
							
						 
					 
					
						
						
							
						
						bcf1fa80f3 
					 
					
						
						
							
							hush: add tests for interrupting read  
						
						 
						
						... 
						
						
						
						Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com > 
						
						
					 
					
						2011-05-09 01:05:33 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Vlasenko 
							
						 
					 
					
						
						
							
						
						dbfa45b3b2 
					 
					
						
						
							
							hust test: complain if busybox binary can't be found  
						
						 
						
						... 
						
						
						
						Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com > 
						
						
					 
					
						2009-08-12 21:24:29 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Vlasenko 
							
						 
					 
					
						
						
							
						
						cbfe6ad4c6 
					 
					
						
						
							
							hush: fix \<newline> handling on NOMMU  
						
						 
						
						... 
						
						
						
						Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com > 
						
						
					 
					
						2009-08-12 19:47:44 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Vlasenko 
							
						 
					 
					
						
						
							
						
						19679784c0 
					 
					
						
						
							
							hush tests: remove the requirement that .config is in ../..  
						
						 
						
						... 
						
						
						
						Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com > 
						
						
					 
					
						2009-08-12 14:53:44 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike Frysinger 
							
						 
					 
					
						
						
							
						
						eab40e5885 
					 
					
						
						
							
							hush_test: stop mixing tabs/spaces for indentation  
						
						 
						
						... 
						
						
						
						Signed-off-by: Mike Frysinger <vapier@gentoo.org > 
						
						
					 
					
						2009-06-01 16:33:05 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike Frysinger 
							
						 
					 
					
						
						
							
						
						ff64fb9e31 
					 
					
						
						
							
							hush_test: filter test output to avoid C lib differences  
						
						 
						
						... 
						
						
						
						The getopt function in some C libraries wraps the option in single quotes
while others do not.  Avoid the issue by running sed on the output and
strip all quotes.
Signed-off-by: Mike Frysinger <vapier@gentoo.org > 
						
						
					 
					
						2009-06-01 14:16:43 -04:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike Frysinger 
							
						 
					 
					
						
						
							
						
						20300d0129 
					 
					
						
						
							
							source the .config so tests can signal they need to be skipped due to feature disable  
						
						 
						
						
						
						
					 
					
						2009-04-09 07:49:43 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						cd418a2670 
					 
					
						
						
							
							hush: fix a bunch of obscure while/until/continue bugs  
						
						 
						
						... 
						
						
						
						function                                             old     new   delta
run_list                                            1159    1214     +55
done_pipe                                            106     123     +17
done_command                                          86      98     +12
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/0 up/down: 84/0)               Total: 84 bytes 
						
						
					 
					
						2009-04-06 18:08:35 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike Frysinger 
							
						 
					 
					
						
						
							
						
						a36258f288 
					 
					
						
						
							
							trim trailing slashes from specified subdir so we output to the right place  
						
						 
						
						
						
						
					 
					
						2009-04-02 22:46:52 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						e61f07f036 
					 
					
						
						
							
							remove ((expr)) bash'ism  
						
						 
						
						
						
						
					 
					
						2009-03-28 19:31:34 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mike Frysinger 
							
						 
					 
					
						
						
							
						
						42ab86520e 
					 
					
						
						
							
							make sure we exit based on test failure rather than always exiting with 0  
						
						 
						
						
						
						
					 
					
						2009-03-28 15:43:47 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						30c9cc5b17 
					 
					
						
						
							
							hush: continue fixing quoting and subst: fix glob_and_assign.tests.  
						
						 
						
						
						
						
					 
					
						2008-06-17 07:24:29 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						a84420062a 
					 
					
						
						
							
							hush: support "! cmd | cmd" negation  
						
						 
						
						... 
						
						
						
						function                                             old     new   delta
done_word                                            749     791     +42
run_list                                            1821    1859     +38
checkjobs                                            334     351     +17
done_pipe                                             61      74     +13
static.reserved_list                                 132     144     +12
initialize_context                                    53      45      -8
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 5/1 up/down: 122/-8)            Total: 114 bytes 
						
						
					 
					
						2008-06-14 11:00:17 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						05743d7949 
					 
					
						
						
							
							hush: reinstate cmd handling for NOMMU (with fat big warning).  
						
						 
						
						... 
						
						
						
						hush: fix a case where none of pipe members could be started
  because of fork failure
hush: rename functions: xxx_real -> xxx
hush: try to add a bit more of vfork-friendliness
hush: add rudimentary design docs
hush: add TODO (newly discovered bug with globbing) 
						
						
					 
					
						2008-02-10 12:10:08 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						cccdc4e01a 
					 
					
						
						
							
							hush: fix $ expansion in redirections, add testcase for that  
						
						 
						
						
						
						
					 
					
						2007-11-23 21:08:38 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						f962a0354e 
					 
					
						
						
							
							hush: plug memory leak  
						
						 
						
						
						
						
					 
					
						2007-11-23 12:50:54 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						119b995437 
					 
					
						
						
							
							hush: reinstate hush_test, add testcases for process subst  
						
						 
						
						
						
						
					 
					
						2007-05-11 12:57:35 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						3e9aaae5dc 
					 
					
						
						
							
							hush: fix bug in interactive shell introduced yesterday  
						
						 
						
						... 
						
						
						
						hush: fix `process subst` (2 bugs)
NB: will delete and re-add hush_test in order to change file modes 
						
						
					 
					
						2007-05-11 12:56:43 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denis Vlasenko 
							
						 
					 
					
						
						
							
						
						e0a336747c 
					 
					
						
						
							
							hush: fix "unterminated last line loops forever" bug  
						
						 
						
						... 
						
						
						
						hush: add testsuite infrastructure 
						
						
					 
					
						2007-05-10 23:06:55 +00:00