From 36c718386cb9cc4dfad087bf4397128f4b980a3a Mon Sep 17 00:00:00 2001 From: Syoyo Fujita Date: Wed, 15 Jun 2016 15:48:18 +0900 Subject: [PATCH] Update README. Fix exec name in test_runner.py --- README.md | 2 +- test_runner.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ed54f67..06728a0 100644 --- a/README.md +++ b/README.md @@ -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? diff --git a/test_runner.py b/test_runner.py index 7472808..9c481b9 100644 --- a/test_runner.py +++ b/test_runner.py @@ -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()