Index: Tests/basic.eagle ================================================================== --- Tests/basic.eagle +++ Tests/basic.eagle @@ -85,11 +85,12 @@ tlog "---- BEGIN STDOUT OUTPUT\n" tlog $output tlog "\n---- END STDOUT OUTPUT\n" - list $code [string equal $output [readFile $testLinqOutFile]] \ + list $code [string equal [string map [list \r\n \n] $output] \ + [string map [list \r\n \n] [readFile $testLinqOutFile]]] \ [expr {$code == 0 ? "" : $error}] } -cleanup { catch {object invoke Console OutputEncoding $savedEncoding} catch {info previouspid true} @@ -124,11 +125,12 @@ tlog "---- BEGIN STDOUT OUTPUT\n" tlog $output tlog "\n---- END STDOUT OUTPUT\n" - list $code [string equal $output [readFile $testLinqOutFile]] \ + list $code [string equal [string map [list \r\n \n] $output] \ + [string map [list \r\n \n] [readFile $testLinqOutFile]]] \ [expr {$code == 0 ? "" : $error}] } -cleanup { catch {object invoke Console OutputEncoding $savedEncoding} catch {info previouspid true}