From 41fff9e2284e9be6e8a99da05beda54f398b0305 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 31 Aug 2021 10:28:18 -0700 Subject: Handle extra info in dylink section (#4112) If extra data is found in this section simply propagate it. Also, remove some dead code from wasm-binary.cpp. --- test/lit/lit.cfg.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/lit/lit.cfg.py') diff --git a/test/lit/lit.cfg.py b/test/lit/lit.cfg.py index 23b0c3de6..ac89a5991 100644 --- a/test/lit/lit.cfg.py +++ b/test/lit/lit.cfg.py @@ -10,6 +10,8 @@ config.test_exec_root = os.path.join(config.binaryen_build_root, 'test') # Replace all Binaryen tools with their absolute paths bin_dir = os.path.join(config.binaryen_build_root, 'bin') +assert(os.path.isdir(bin_dir)) + for tool_file in os.listdir(bin_dir): tool_path = config.binaryen_build_root + '/bin/' + tool_file tool = tool_file[:-4] if tool_file.endswith('.exe') else tool_file -- cgit v1.2.3