Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
479cbd6d
Commit
479cbd6d
authored
Sep 13, 2010
by
Joe Poirier
Committed by
Alex Brainman
Sep 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(windows) disable tests that cause the build to fail
R=rsc, brainman CC=golang-dev
https://golang.org/cl/2171044
parent
bc55b41c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
src/run.bash
src/run.bash
+13
-5
No files found.
src/run.bash
View file @
479cbd6d
...
@@ -76,8 +76,10 @@ time gomake test
...
@@ -76,8 +76,10 @@ time gomake test
)
||
exit
$?
)
||
exit
$?
(
xcd ../misc/cgo/stdio
(
xcd ../misc/cgo/stdio
gomake clean
if
[[
$(
uname
|
tr
A-Z a-z |
sed
's/mingw/windows/'
)
!=
*
windows
*
]]
;
then
./test.bash
gomake clean
./test.bash
fi
)
||
exit
$?
)
||
exit
$?
(
xcd pkg/exp/ogle
(
xcd pkg/exp/ogle
...
@@ -86,14 +88,20 @@ time gomake ogle
...
@@ -86,14 +88,20 @@ time gomake ogle
)
||
exit
$?
)
||
exit
$?
(
xcd ../doc/progs
(
xcd ../doc/progs
time
./run
if
[[
$(
uname
|
tr
A-Z a-z |
sed
's/mingw/windows/'
)
!=
*
windows
*
]]
;
then
time
./run
fi
)
||
exit
$?
)
||
exit
$?
(
xcd ../test/bench
(
xcd ../test/bench
./timing.sh
-test
if
[[
$(
uname
|
tr
A-Z a-z |
sed
's/mingw/windows/'
)
!=
*
windows
*
]]
;
then
./timing.sh
-test
fi
)
||
exit
$?
)
||
exit
$?
(
xcd ../test
(
xcd ../test
./run
if
[[
$(
uname
|
tr
A-Z a-z |
sed
's/mingw/windows/'
)
!=
*
windows
*
]]
;
then
./run
fi
)
||
exit
$?
)
||
exit
$?
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment