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
cbd3b2e8
Commit
cbd3b2e8
authored
Jan 12, 2010
by
Adam Langley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 'bench' target to makefiles.
R=rsc, agl, r CC=golang-dev
https://golang.org/cl/188043
parent
3daf133f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
src/Make.pkg
src/Make.pkg
+3
-0
src/pkg/Makefile
src/pkg/Makefile
+12
-0
No files found.
src/Make.pkg
View file @
cbd3b2e8
...
@@ -53,6 +53,9 @@ clean:
...
@@ -53,6 +53,9 @@ clean:
test:
test:
$(QUOTED_GOBIN)/gotest
$(QUOTED_GOBIN)/gotest
bench:
$(QUOTED_GOBIN)/gotest -benchmarks=. -match="Do not run tests"
nuke: clean
nuke: clean
rm -f $(pkgdir)/$(TARG).a
rm -f $(pkgdir)/$(TARG).a
...
...
src/pkg/Makefile
View file @
cbd3b2e8
...
@@ -134,13 +134,20 @@ NOTEST=\
...
@@ -134,13 +134,20 @@ NOTEST=\
testing/iotest
\
testing/iotest
\
xgb
\
xgb
\
NOBENCH
=
\
container/vector
\
TEST
=
\
TEST
=
\
$(
filter-out
$(NOTEST)
,
$(DIRS)
)
$(
filter-out
$(NOTEST)
,
$(DIRS)
)
BENCH
=
\
$(
filter-out
$(NOBENCH)
,
$(TEST)
)
clean.dirs
:
$(addsuffix .clean
,
$(DIRS))
clean.dirs
:
$(addsuffix .clean
,
$(DIRS))
install.dirs
:
$(addsuffix .install
,
$(DIRS))
install.dirs
:
$(addsuffix .install
,
$(DIRS))
nuke.dirs
:
$(addsuffix .nuke
,
$(DIRS))
nuke.dirs
:
$(addsuffix .nuke
,
$(DIRS))
test.dirs
:
$(addsuffix .test
,
$(TEST))
test.dirs
:
$(addsuffix .test
,
$(TEST))
bench.dirs
:
$(addsuffix .bench
,
$(BENCH))
%.clean
:
%.clean
:
+cd
$*
&&
$(QUOTED_GOBIN)
/gomake clean
+cd
$*
&&
$(QUOTED_GOBIN)
/gomake clean
...
@@ -154,12 +161,17 @@ test.dirs: $(addsuffix .test, $(TEST))
...
@@ -154,12 +161,17 @@ test.dirs: $(addsuffix .test, $(TEST))
%.test
:
%.test
:
+cd
$*
&&
$(QUOTED_GOBIN)
/gomake
test
+cd
$*
&&
$(QUOTED_GOBIN)
/gomake
test
%.bench
:
+cd
$*
&&
$(QUOTED_GOBIN)
/gomake bench
clean
:
clean.dirs
clean
:
clean.dirs
install
:
install.dirs
install
:
install.dirs
test
:
test.dirs
test
:
test.dirs
bench
:
bench.dirs
nuke
:
nuke.dirs
nuke
:
nuke.dirs
rm
-rf
"
$(GOROOT)
"
/pkg/
*
rm
-rf
"
$(GOROOT)
"
/pkg/
*
...
...
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