Skip to content

Commit

Permalink
Fix webidl binder regression + add test_w* testing (emscripten-core#5712
Browse files Browse the repository at this point in the history
)

* fix webidl binder, it is called by itself and so needs the new 2/3-compatible import method for the shared module

* add testing for w* tests
  • Loading branch information
kripken authored Oct 26, 2017
1 parent 03863ec commit 994da11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ env:
- TEST_TARGET=asm2i.test_p*
- TEST_TARGET="asm3.test_p*"
- TEST_TARGET="ALL.test_q* ALL.test_r* ALL.test_s*"
- TEST_TARGET="ALL.test_w*"
- TEST_TARGET="ALL.test_t* ALL.test_u* ALL.test_v* ALL.test_x* ALL.test_y* ALL.test_z*"
- TEST_TARGET=other

Expand Down
4 changes: 3 additions & 1 deletion tools/webidl_binder.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
from __future__ import print_function
import os, sys

from . import shared
sys.path.insert(1, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from tools import shared

sys.path.append(shared.path_from_root('third_party'))
sys.path.append(shared.path_from_root('third_party', 'ply'))
Expand Down

0 comments on commit 994da11

Please sign in to comment.