예제 #1
0
파일: run_test.py 프로젝트: toobaz/llvmmath
import sys
import llvmmath

sys.exit(llvmmath.test())
예제 #2
0
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function, division, absolute_import
import sys
import llvmmath

kwds = {}
if len(sys.argv) > 1:
    kwds["pattern"] = sys.argv[1]

sys.exit(llvmmath.test(**kwds))