Update README.

Fix exec name in test_runner.py
This commit is contained in:
Syoyo Fujita 2016-06-15 15:48:18 +09:00
parent 92cb3d9c4d
commit 36c718386c
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@
## TODOs
* [ ] Support multiple scenes in `.gltf`
* [ ] Parse `animation`, `program`, `sampler`, `shader`, `technique`
* [ ] Parse `animation`, `sampler`
* [ ] Compression/decompression(Open3DGC, etc)
* [ ] Support `extensions` and `extras` property
* [ ] HDR image?

View File

@ -11,7 +11,7 @@ import subprocess
# -- config -----------------------
# Absolute path pointing to your cloned git repo of https://github.com/KhronosGroup/glTF/sampleModels
base_model_dir = "/Users/syoyo/work/glTF/sampleModels"
base_model_dir = "/home/syoyo/work/glTF/sampleModels"
kinds = [ "glTF", "glTF-Binary", "glTF-Embedded", "glTF-MaterialsCommon"]
# ---------------------------------
@ -22,7 +22,7 @@ success = []
def run(filename):
print("Testing: " + filename)
cmd = ["./example", filename]
cmd = ["./loader_example", filename]
try:
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(stdout, stderr) = p.communicate()