forked from facebookincubator/SocketRocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (18 loc) · 630 Bytes
/
Makefile
File metadata and controls
26 lines (18 loc) · 630 Bytes
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
TEST_SCENARIOS="[1-8]*"
TEST_URL='ws://localhost:9001/'
all:
$(MAKE) -C SocketRocket
clean:
$(MAKE) -C SocketRocket clean
test:
mkdir -p pages/results
bash ./TestSupport/run_test.sh $(TEST_SCENARIOS) $(TEST_URL) Debug || open pages/results/index.html && false
open pages/results/index.html
test_all:
mkdir -p pages/results
bash ./TestSupport/run_test.sh '*' $(TEST_URL) Debug || open pages/results/index.html && false
open pages/results/index.html
test_perf:
mkdir -p pages/results
bash ./TestSupport/run_test.sh '9.*' $(TEST_URL) Release || open pages/results/index.html && false
open pages/results/index.html