Results for let.test.sh

statusoshosh_.pyosh_.cc
FAIL 222
total222
caseoshosh_.pyosh_.ccdescription
0FAIL FAIL FAIL let
detailsdetailsdetails
1FAIL FAIL FAIL let with ()
detailsdetailsdetails
0 passed, 0 OK, 0 not implemented, 0 BUG, 6 failed, 0 timeouts, 0 cases skipped
2 failed under osh

Details on runs that didn't PASS

osh0 let

[osh stdout] Expected '1 3 9 9\n', got '\n'

stdout:
stderr: 
  let x=1
  ^~~
[ stdin ]:1: 'let' not found
  let y=x+2
  ^~~
[ stdin ]:2: 'let' not found
  let z=y*3  # zsh treats this as a glob; bash doesn't
  ^~~
[ stdin ]:3: 'let' not found
  let z2='y*3'  # both are OK with this
  ^~~
[ stdin ]:4: 'let' not found
osh_.py0 let

[osh_.py stdout] Expected '1 3 9 9\n', got '\n'

stdout:
stderr: 
  let x=1
  ^~~
[ stdin ]:1: 'let' not found
  let y=x+2
  ^~~
[ stdin ]:2: 'let' not found
  let z=y*3  # zsh treats this as a glob; bash doesn't
  ^~~
[ stdin ]:3: 'let' not found
  let z2='y*3'  # both are OK with this
  ^~~
[ stdin ]:4: 'let' not found
osh_.cc0 let

[osh_.cc stdout] Expected '1 3 9 9\n', got '\n'

stdout:
stderr: 
  let x=1
  ^~~
[ stdin ]:1: 'let' not found
  let y=x+2
  ^~~
[ stdin ]:2: 'let' not found
  let z=y*3  # zsh treats this as a glob; bash doesn't
  ^~~
[ stdin ]:3: 'let' not found
  let z2='y*3'  # both are OK with this
  ^~~
[ stdin ]:4: 'let' not found

dumb_alloc:
	gNumNew = 2489
	gNumDelete = 244
	gMemPos = 84416

	gNumMalloc = 235
	gNumFree = 0
	gMemPos2 = 13024
osh1 let with ()

[osh stdout] Expected '1 3 9\n', got ''
[osh status] Expected 0, got 1

stdout:
stderr: 
  let x=( 1 )
        ^
[ stdin ]:1: fatal: Unexpected array literal
osh_.py1 let with ()

[osh_.py stdout] Expected '1 3 9\n', got ''
[osh_.py status] Expected 0, got 1

stdout:
stderr: 
  let x=( 1 )
        ^
[ stdin ]:1: fatal: Unexpected array literal
osh_.cc1 let with ()

[osh_.cc stdout] Expected '1 3 9\n', got ''
[osh_.cc status] Expected 0, got 1

stdout:
stderr: 
  let x=( 1 )
  ^~~
[ stdin ]:1: fatal: Unexpected array literal

dumb_alloc:
	gNumNew = 1684
	gNumDelete = 106
	gMemPos = 59264

	gNumMalloc = 47
	gNumFree = 0
	gMemPos2 = 9936