File tree 2 files changed +5
-8
lines changed 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,12 @@ matrix:
14
14
packages : ['cmake', 'clang-3.7']
15
15
compiler : clang
16
16
env : COMPILER_VERSION=3.7
17
- # before_script:
18
- # - python update.py
19
- script :
17
+ before_script :
18
+ - git submodule update --init # Initialize the submodules recorded in the index.
20
19
- export CC="${CC}-${COMPILER_VERSION}"
21
20
- export CXX="${CXX}-${COMPILER_VERSION}"
21
+ - $CC --version
22
+ script :
22
23
- cmake .
23
24
- make -j2
24
- - python check.py
25
+ - ./ check.py
Original file line number Diff line number Diff line change @@ -72,16 +72,12 @@ def fail_if_not_contained(actual, expected):
72
72
73
73
if not interpreter :
74
74
print 'warning: no interpreter provided (not testing spec interpreter validation)'
75
- time .sleep (0.5 )
76
75
if not has_node :
77
76
print 'warning: no node found (not checking proper js form)'
78
- time .sleep (0.5 )
79
77
if not has_mozjs :
80
78
print 'warning: no mozjs found (not checking asm.js validation)'
81
- time .sleep (0.5 )
82
79
if not has_emcc :
83
80
print 'warning: no emcc found (not checking emscripten/binaryen integration)'
84
- time .sleep (0.5 )
85
81
86
82
print '[ checking asm2wasm testcases... ]\n '
87
83
You can’t perform that action at this time.
0 commit comments