From e40396003798678803f4091ac4132aefa3905d7a Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Tue, 1 Jun 2021 15:26:55 -0400 Subject: [wasm-split] Make option validation declarative (#3916) In anticipation of adding a third wasm-split mode, merge-profiles, in addition to the existing split and instrument modes, refactor wasm-split's option validation to let the valid modes be declared for each option. This approach is more scalable and robust than the ad-hoc validation we had previously. --- test/lit/lit.cfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/lit/lit.cfg.py') diff --git a/test/lit/lit.cfg.py b/test/lit/lit.cfg.py index df3a21079..60ba1ced6 100644 --- a/test/lit/lit.cfg.py +++ b/test/lit/lit.cfg.py @@ -3,7 +3,7 @@ import lit.formats config.name = "Binaryen lit tests" config.test_format = lit.formats.ShTest(True) -config.suffixes = ['.wat', '.wast'] +config.suffixes = ['.wat', '.wast', '.test'] config.test_source_root = os.path.dirname(__file__) config.test_exec_root = os.path.join(config.binaryen_build_root, 'test') -- cgit v1.2.3