forked from mysqljs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (19 loc) · 725 Bytes
/
Makefile
File metadata and controls
21 lines (19 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SHELL := /bin/bash
test-simple:
@find test/simple/test-*.js | xargs -n 1 -t node
test-system:
@find test/system/test-*.js | xargs -n 1 -t node
test-system-slow:
@find test/system/slow/test-*.js | xargs -n 1 -t node
# Dangerous tests potentially effect the MySql server settings, don't run these in production!
test-system-dangerous:
@find test/system/dangerous/test-*.js | xargs -n 1 -t node
test: test-simple test-system
test-all: test test-system-slow test-system-dangerous
benchmark-node-mysql:
@find benchmark/node-mysql/*.js | xargs -n 1 -t node
benchmark-php:
@find benchmark/php/*.php | xargs -n 1 -t php
benchmark-all: benchmark-node-mysql benchmark-php
benchmark: benchmark-node-mysql
.PHONY: test benchmark