main.tcl at [38bed7cee0]

File example/main.tcl artifact ff243d60b5 part of check-in 38bed7cee0


set fd [open "//xvfs:/example/foo"]
seek $fd 0 end
seek $fd -1 current
set check [read $fd 1]
if {$check != "\n"} {
	error "EXPECTED: (new line); GOT: [binary encode hex $check]"
}

puts "ALL TESTS PASSED"