Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
Rename mvp_test_files to main_test_files
Browse files Browse the repository at this point in the history
  • Loading branch information
ngzhian committed Aug 26, 2020
1 parent b7156d5 commit f3ac294
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/core/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
arguments = parser.parse_args()
sys.argv = sys.argv[:1]

mvp_test_files = glob.glob(os.path.join(inputDir, "*.wast"))
main_test_files = glob.glob(os.path.join(inputDir, "*.wast"))
# SIMD test files are in a subdirectory.
simd_test_files = glob.glob(os.path.join(inputDir, "simd", "*.wast"))

wasmCommand = arguments.wasm
jsCommand = arguments.js
outputDir = arguments.out
inputFiles = arguments.file if arguments.file else mvp_test_files + simd_test_files
inputFiles = arguments.file if arguments.file else main_test_files + simd_test_files

if not os.path.exists(wasmCommand):
sys.stderr.write("""\
Expand Down

0 comments on commit f3ac294

Please sign in to comment.