| Index: pydir/wasm-run-torture-tests.py
 | 
| diff --git a/pydir/wasm-run-torture-tests.py b/pydir/wasm-run-torture-tests.py
 | 
| index de0bb21735acdacf241fe8a380b32479fb8a958d..c55d94a50c424f04abbe1332acf41c967d4b16bc 100755
 | 
| --- a/pydir/wasm-run-torture-tests.py
 | 
| +++ b/pydir/wasm-run-torture-tests.py
 | 
| @@ -22,13 +22,13 @@ def run_test(test_file, verbose=False):
 | 
|    global fail_count
 | 
|  
 | 
|    cmd = """LD_LIBRARY_PATH=../../../../v8/out/native/lib.target ./pnacl-sz \
 | 
| -               -filetype=asm -target=arm32 {} -threads=0 -O2 \
 | 
| +               -filetype=asm -target=x8632 {} -threads=0 -O2 \
 | 
|                 -verbose=wasm""".format(test_file)
 | 
|  
 | 
|    if not verbose:
 | 
|      cmd += " &> /dev/null"
 | 
|  
 | 
| -  sys.stdout.write(test_file + "...");
 | 
| +  sys.stdout.write(test_file + " ...");
 | 
|    status = os.system(cmd);
 | 
|    if status != 0:
 | 
|      fail_count += 1
 | 
| @@ -45,7 +45,7 @@ if len(sys.argv) > 1:
 | 
|    test_files = sys.argv[1:]
 | 
|    verbose = True
 | 
|  else:
 | 
| -  test_files = glob.glob("./torture-s2wasm-sexpr-wasm.old/*.wasm")
 | 
| +  test_files = glob.glob("./torture-s2wasm-sexpr-wasm/*.wasm")
 | 
|  
 | 
|  for test_file in test_files:
 | 
|    run_test(test_file, verbose)
 | 
| 
 |