https://github.com/kripken/emscripten
Raw File
Tip revision: 2d57f1967247165597d83fe0e7d946d8a0df1c25 authored by Guanzhong Chen on 23 May 2019, 01:11:38 UTC
Added parameterized test support and use it for metadce (#8653)
Tip revision: 2d57f19
emcc
#!/usr/bin/env python

# This script should work in python 2 *or* 3. It loads the main code using
# python_selector, which may pick a different version.

from tools import python_selector

import sys

if __name__ == '__main__':
  python_selector.run(__file__)
back to top