Skip to content

Commit 416e559

Browse files
committed
Added running simple integrity/functionality test to travis for Node 8 and 9
1 parent 348f0f1 commit 416e559

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ os:
44

55
language: node_js
66
node_js:
7-
- "6"
7+
- "8"
8+
- "9"
89

910
addons:
1011
apt:
@@ -23,7 +24,7 @@ env:
2324
global:
2425
- DISPLAY=:99.0
2526
matrix:
26-
- CXX=g++-4.8 TEST_SUITE=testState
27+
- CXX=g++-4.8 TEST_SUITE=testBuildIntegrity
2728

2829
matrix:
2930
fast_finish: true

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"dist"
88
],
99
"scripts": {
10-
"coverage": "npm run build:dist && istanbul cover ./tests/tester.js -- -s --dist",
10+
"coverage": "istanbul cover ./tests/tester.js -- -s",
1111
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
1212
"testVM": "node ./tests/tester -v",
1313
"testState": "npm run build:dist && node ./tests/tester -s --dist",
14-
"testBuildIntegrity": "node ./tests/tester -s --dist --test='stackOverflow'",
14+
"testBuildIntegrity": "npm run build:dist && node ./tests/tester -s --dist --test='stackOverflow'",
1515
"testBlockchain": "npm run build:dist && node --stack-size=1500 ./tests/tester -b --dist --excludeDir='GeneralStateTests'",
1616
"testBlockchainGeneralStateTests": "npm run build:dist && node --stack-size=1500 ./tests/tester -b --dist --dir='GeneralStateTests'",
1717
"testBlockchainBlockGasLimit": "npm run build:dist && node --stack-size=1500 ./tests/tester -b --dist --dir='bcBlockGasLimitTest'",

tests/tester.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ const skipSlow = [
5555
'static_Call1MB1024Calldepth', // slow
5656
'static_Callcode50000', // slow
5757
'static_Return50000', // slow
58-
'static_Return50000_2' // slow
58+
'static_Return50000_2', // slow
59+
'QuadraticComplexitySolidity_CallDataCopy'
5960
]
6061

6162
/*

0 commit comments

Comments
 (0)