mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
17 lines
378 B
Python
17 lines
378 B
Python
import subprocess, sys, os
|
|
|
|
path = os.path.dirname(__file__)
|
|
if path != '':
|
|
os.chdir(path)
|
|
|
|
name = sys.argv[1]
|
|
output = subprocess.check_output([sys.executable, name + ".py"]).decode('utf-8')
|
|
reference = open(name + '.ref', 'r').read()
|
|
|
|
if output == reference:
|
|
print('Test "%s" succeeded.' % name)
|
|
exit(0)
|
|
else:
|
|
print('Test "%s" FAILED!' % name)
|
|
exit(-1)
|