Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(32)

Unified Diff: doc/progs/run

Issue 4965050: code review 4965050: doc/progs: fixed for windows/amd64 (Closed)
Patch Set: diff -r 71f597a8ca9b https://go.googlecode.com/hg/ Created 13 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « doc/progs/file_windows.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: doc/progs/run
===================================================================
--- a/doc/progs/run
+++ b/doc/progs/run
@@ -15,7 +15,7 @@
rm -f *.$O
if [ "$GOOS" = "windows" ];then
- $GC -o file.8 file_windows.go
+ $GC -o file.$O file_windows.go
else
$GC file.go
fi
@@ -62,7 +62,11 @@
testit helloworld "" "Hello, world; or Καλημέρα κόσμε; or こんにちは 世界"
-testit helloworld3 "" "hello, world can't open file; err=no such file or directory"
+if [ "$GOOS" = "windows" ];then
+ testit helloworld3 "" "hello, world can't open file; err=The system cannot find the path specified."
+else
+ testit helloworld3 "" "hello, world can't open file; err=no such file or directory"
+fi
testit echo "hello, world" "hello, world"
testit sum "" "6"
testit strings "" ""
« no previous file with comments | « doc/progs/file_windows.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b