aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/Makefile
blob: 832cba8bdbe8549c50179176bfe95467294aa680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
ALL_TESTS = $(shell find test/ -name '*.test.js')
ALL_BENCH = $(shell find benchmarks -name '*.bench.js')

run-tests:
	@./node_modules/.bin/expresso \
		-t 3000 \
		-I support \
		--serial \
		$(TESTFLAGS) \
		$(TESTS)

test:
	@$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests

test-cov:
	@TESTFLAGS=--cov $(MAKE) test

test-leaks:
	@ls test/leaks/* | xargs node --expose_debug_as=debug --expose_gc

run-bench:
	@node $(PROFILEFLAGS) benchmarks/runner.js

bench:
	@$(MAKE) BENCHMARKS="$(ALL_BENCH)" run-bench

profile:
	@PROFILEFLAGS='--prof --trace-opt --trace-bailout --trace-deopt' $(MAKE) bench

.PHONY: test bench profile