Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Merge branch 'http-memleak' into v0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed May 4, 2012
2 parents ebd0f98 + 2fc528c commit d1effbb
Show file tree
Hide file tree
Showing 10 changed files with 647 additions and 110 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -40,3 +40,4 @@ ipch/
email.md
blog.html
deps/v8-*
node_modules
13 changes: 11 additions & 2 deletions Makefile
Expand Up @@ -32,7 +32,7 @@ install:
uninstall:
@$(WAF) uninstall

test: all
test: all node_modules/weak
$(PYTHON) tools/test.py --mode=release simple message

test-http1: all
Expand All @@ -41,7 +41,15 @@ test-http1: all
test-valgrind: all
$(PYTHON) tools/test.py --mode=release --valgrind simple message

test-all: all
node_modules/weak:
@if [ ! -f node ]; then make all; fi
@if [ ! -d node_modules ]; then mkdir -p node_modules; fi
./node deps/npm/bin/npm-cli.js install weak --prefix="$(shell pwd)"

test-gc: all node_modules/weak
$(PYTHON) tools/test.py --mode=release gc

test-all: all node_modules/weak
$(PYTHON) tools/test.py --mode=debug,release
make test-npm

Expand Down Expand Up @@ -153,6 +161,7 @@ clean:
$(WAF) clean
-find tools -name "*.pyc" | xargs rm -f
-rm -rf blog.html email.md
-rm -rf node_modules

distclean: docclean
-find tools -name "*.pyc" | xargs rm -f
Expand Down

0 comments on commit d1effbb

Please sign in to comment.