From 490c5f3e89b3f6322ffdf07755f9d1d2152a199f Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Mon, 11 Nov 2024 20:31:44 +0100 Subject: [PATCH] Test only errors themselves in MML compilation tests The line with the error message is universal, but what follows is platform dependent. We could replace these strings somehow to work on all platforms, but they don't really hold any crucial information, so it's easier to just drop them. --- tests/TestBase.gd | 11 ++ tests/run/mml-compilation.gd | 9 +- .../mml-compilation/outputs/1070131212.txt | 8 - .../mml-compilation/outputs/1152739234.txt | 3 - .../mml-compilation/outputs/1177443911.txt | 2 - .../mml-compilation/outputs/1257090433.txt | 1 - .../mml-compilation/outputs/1742055971.txt | 1 - .../mml-compilation/outputs/2024256035.txt | 1 - .../mml-compilation/outputs/2238985794.txt | 5 - .../mml-compilation/outputs/2411669568.txt | 1 - .../mml-compilation/outputs/2642208711.txt | 2 - .../mml-compilation/outputs/2845488685.txt | 158 ------------------ .../mml-compilation/outputs/3110210383.txt | 1 - .../mml-compilation/outputs/3279476051.txt | 1 - .../mml-compilation/outputs/3413345328.txt | 1 - .../mml-compilation/outputs/3478171792.txt | 2 - .../mml-compilation/outputs/3489447364.txt | 5 - .../mml-compilation/outputs/3584134315.txt | 6 - .../run/mml-compilation/outputs/362163779.txt | 10 -- .../mml-compilation/outputs/3629044843.txt | 6 - .../mml-compilation/outputs/3895501746.txt | 27 --- .../mml-compilation/outputs/3979324700.txt | 1 - .../mml-compilation/outputs/3986954294.txt | 3 - .../run/mml-compilation/outputs/406299275.txt | 8 - .../mml-compilation/outputs/4131243897.txt | 1 - .../mml-compilation/outputs/4195164030.txt | 1 - .../run/mml-compilation/outputs/456528779.txt | 1 - .../run/mml-compilation/outputs/523940048.txt | 4 - .../run/mml-compilation/outputs/69039091.txt | 1 - .../run/mml-compilation/outputs/921911654.txt | 1 - .../run/mml-compilation/outputs/959474089.txt | 2 - 31 files changed, 17 insertions(+), 267 deletions(-) diff --git a/tests/TestBase.gd b/tests/TestBase.gd index f566d04..57ba71c 100644 --- a/tests/TestBase.gd +++ b/tests/TestBase.gd @@ -169,3 +169,14 @@ func _run_subscript(path: String, arguments: PackedStringArray) -> String: # Normalize the EOL sequences. return output[0].replace("\r", "") + + +func _extract_godot_errors(buffer: String) -> String: + var errors := "" + var lines := buffer.split("\n", false) + + for line in lines: + if line.begins_with("ERROR: "): + errors += line + "\n" + + return errors diff --git a/tests/run/mml-compilation.gd b/tests/run/mml-compilation.gd index 0d71aa8..c0d0120 100644 --- a/tests/run/mml-compilation.gd +++ b/tests/run/mml-compilation.gd @@ -36,9 +36,12 @@ func run(scene_tree: SceneTree) -> void: var output_path := OUTPUTS_PATH.path_join("%d.txt" % [ tune_hash ]) # This is painfully slow, but allows us to read the errors and match them against the expected result. - var errors := _run_subscript("./run/mml-compilation/compile-mml-song.gd", [ tune_item.mml_string ]) + var received := _run_subscript("./run/mml-compilation/compile-mml-song.gd", [ tune_item.mml_string ]) + received = _extract_godot_errors(received) var expected := _load_tune_output(output_path) - var errors_match := (errors == expected) + expected = _extract_godot_errors(expected) + + var errors_match := (received == expected) if expected.is_empty(): _assert_equal("compiled w/o errors: %s - %s" % [ tune_item.title, tune_item.author ], errors_match, true) @@ -49,7 +52,7 @@ func run(scene_tree: SceneTree) -> void: _append_extra_to_output("Expected:") _append_extra_to_output(expected) _append_extra_to_output("Got:") - _append_extra_to_output(errors) + _append_extra_to_output(received) # Cleanup. diff --git a/tests/run/mml-compilation/outputs/1070131212.txt b/tests/run/mml-compilation/outputs/1070131212.txt index 5f7ac39..4732eb6 100644 --- a/tests/run/mml-compilation/outputs/1070131212.txt +++ b/tests/run/mml-compilation/outputs/1070131212.txt @@ -1,16 +1,8 @@ ERROR: Translator: Parameter 'DR' value (44) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (44) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'RR' value (66) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SL' value (66) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'RR' value (33) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/1152739234.txt b/tests/run/mml-compilation/outputs/1152739234.txt index 0e064cd..fa37191 100644 --- a/tests/run/mml-compilation/outputs/1152739234.txt +++ b/tests/run/mml-compilation/outputs/1152739234.txt @@ -1,6 +1,3 @@ ERROR: Translator: Parameter 'RR' value (27) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'RR' value (27) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'RR' value (27) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/1177443911.txt b/tests/run/mml-compilation/outputs/1177443911.txt index 3b993c1..a861ea5 100644 --- a/tests/run/mml-compilation/outputs/1177443911.txt +++ b/tests/run/mml-compilation/outputs/1177443911.txt @@ -1,4 +1,2 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/1257090433.txt b/tests/run/mml-compilation/outputs/1257090433.txt index ad2df0d..39549f2 100644 --- a/tests/run/mml-compilation/outputs/1257090433.txt +++ b/tests/run/mml-compilation/outputs/1257090433.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'D2' value (-1) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/1742055971.txt b/tests/run/mml-compilation/outputs/1742055971.txt index 6e19ce6..87cf41c 100644 --- a/tests/run/mml-compilation/outputs/1742055971.txt +++ b/tests/run/mml-compilation/outputs/1742055971.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'FB' value (15) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/2024256035.txt b/tests/run/mml-compilation/outputs/2024256035.txt index 09d96e0..4a74efc 100644 --- a/tests/run/mml-compilation/outputs/2024256035.txt +++ b/tests/run/mml-compilation/outputs/2024256035.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'KL' value (8) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/2238985794.txt b/tests/run/mml-compilation/outputs/2238985794.txt index 6d1d737..4aa8d70 100644 --- a/tests/run/mml-compilation/outputs/2238985794.txt +++ b/tests/run/mml-compilation/outputs/2238985794.txt @@ -1,10 +1,5 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/2411669568.txt b/tests/run/mml-compilation/outputs/2411669568.txt index 6559d5c..1c30ef1 100644 --- a/tests/run/mml-compilation/outputs/2411669568.txt +++ b/tests/run/mml-compilation/outputs/2411669568.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/2642208711.txt b/tests/run/mml-compilation/outputs/2642208711.txt index 3b993c1..a861ea5 100644 --- a/tests/run/mml-compilation/outputs/2642208711.txt +++ b/tests/run/mml-compilation/outputs/2642208711.txt @@ -1,4 +1,2 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/2845488685.txt b/tests/run/mml-compilation/outputs/2845488685.txt index 909a6e2..021804b 100644 --- a/tests/run/mml-compilation/outputs/2845488685.txt +++ b/tests/run/mml-compilation/outputs/2845488685.txt @@ -1,316 +1,158 @@ ERROR: Translator: Parameter 'AR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (39) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (39) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (33) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (57) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (52) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (32) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (52) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (48) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (48) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (48) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (52) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (52) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (52) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (48) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (48) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (52) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (61) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (57) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (33) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (46) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (39) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (55) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (57) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (53) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (55) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (62) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (55) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (57) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (32) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (45) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (43) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (49) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (62) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (60) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (34) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (50) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (54) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (58) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (33) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'AR' value (36) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (33) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (33) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (33) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (37) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (40) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (38) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (41) is outside of valid range (0 : 31). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3110210383.txt b/tests/run/mml-compilation/outputs/3110210383.txt index 033b1a3..9dc2927 100644 --- a/tests/run/mml-compilation/outputs/3110210383.txt +++ b/tests/run/mml-compilation/outputs/3110210383.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'D2' value (7) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3279476051.txt b/tests/run/mml-compilation/outputs/3279476051.txt index ad2df0d..39549f2 100644 --- a/tests/run/mml-compilation/outputs/3279476051.txt +++ b/tests/run/mml-compilation/outputs/3279476051.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'D2' value (-1) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3413345328.txt b/tests/run/mml-compilation/outputs/3413345328.txt index 09d96e0..4a74efc 100644 --- a/tests/run/mml-compilation/outputs/3413345328.txt +++ b/tests/run/mml-compilation/outputs/3413345328.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'KL' value (8) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3478171792.txt b/tests/run/mml-compilation/outputs/3478171792.txt index a4f79a8..6ad79af 100644 --- a/tests/run/mml-compilation/outputs/3478171792.txt +++ b/tests/run/mml-compilation/outputs/3478171792.txt @@ -1,4 +1,2 @@ ERROR: Translator: Parameter 'D1' value (-1) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D1' value (-1) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3489447364.txt b/tests/run/mml-compilation/outputs/3489447364.txt index cc005c8..b9525b3 100644 --- a/tests/run/mml-compilation/outputs/3489447364.txt +++ b/tests/run/mml-compilation/outputs/3489447364.txt @@ -1,10 +1,5 @@ ERROR: Translator: Parameter 'D1' value (-1) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SL' value (60) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SL' value (60) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SL' value (60) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SL' value (60) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3584134315.txt b/tests/run/mml-compilation/outputs/3584134315.txt index 916caa1..e46f637 100644 --- a/tests/run/mml-compilation/outputs/3584134315.txt +++ b/tests/run/mml-compilation/outputs/3584134315.txt @@ -1,12 +1,6 @@ ERROR: Translator: Parameter 'D2' value (-1) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'DR' value (44) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SR' value (44) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'RR' value (66) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'SL' value (66) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'RR' value (33) is outside of valid range (0 : 15). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/362163779.txt b/tests/run/mml-compilation/outputs/362163779.txt index 4c7e2c0..c44b6cd 100644 --- a/tests/run/mml-compilation/outputs/362163779.txt +++ b/tests/run/mml-compilation/outputs/362163779.txt @@ -1,20 +1,10 @@ ERROR: Translator: Parameter 'D2' value (7) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D2' value (-3) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D1' value (-3) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D2' value (7) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D2' value (-3) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D1' value (-3) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D2' value (7) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D1' value (-3) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'D1' value (-3) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3629044843.txt b/tests/run/mml-compilation/outputs/3629044843.txt index 52473db..0a6bf97 100644 --- a/tests/run/mml-compilation/outputs/3629044843.txt +++ b/tests/run/mml-compilation/outputs/3629044843.txt @@ -1,12 +1,6 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3895501746.txt b/tests/run/mml-compilation/outputs/3895501746.txt index 2182b74..9b71a1b 100644 --- a/tests/run/mml-compilation/outputs/3895501746.txt +++ b/tests/run/mml-compilation/outputs/3895501746.txt @@ -1,54 +1,27 @@ ERROR: MMLParser: Command 'q' has argument (16) outside of valid range (0 : 8). - at: (src\sequencer\base\mml_parser.cpp:679) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Command 'q' has argument (16) outside of valid range (0 : 8). - at: (src\sequencer\base\mml_parser.cpp:679) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Command 'q' has argument (16) outside of valid range (0 : 8). - at: (src\sequencer\base\mml_parser.cpp:679) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) ERROR: MMLParser: Unknown standard event: '/'. - at: (src\sequencer\base\mml_parser.cpp:534) diff --git a/tests/run/mml-compilation/outputs/3979324700.txt b/tests/run/mml-compilation/outputs/3979324700.txt index c02a0ca..0a96273 100644 --- a/tests/run/mml-compilation/outputs/3979324700.txt +++ b/tests/run/mml-compilation/outputs/3979324700.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'KR' value (8) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/3986954294.txt b/tests/run/mml-compilation/outputs/3986954294.txt index 3690f63..383eb39 100644 --- a/tests/run/mml-compilation/outputs/3986954294.txt +++ b/tests/run/mml-compilation/outputs/3986954294.txt @@ -1,6 +1,3 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/406299275.txt b/tests/run/mml-compilation/outputs/406299275.txt index 6b31a57..d799426 100644 --- a/tests/run/mml-compilation/outputs/406299275.txt +++ b/tests/run/mml-compilation/outputs/406299275.txt @@ -1,16 +1,8 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/4131243897.txt b/tests/run/mml-compilation/outputs/4131243897.txt index ad2df0d..39549f2 100644 --- a/tests/run/mml-compilation/outputs/4131243897.txt +++ b/tests/run/mml-compilation/outputs/4131243897.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'D2' value (-1) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/4195164030.txt b/tests/run/mml-compilation/outputs/4195164030.txt index 6559d5c..1c30ef1 100644 --- a/tests/run/mml-compilation/outputs/4195164030.txt +++ b/tests/run/mml-compilation/outputs/4195164030.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/456528779.txt b/tests/run/mml-compilation/outputs/456528779.txt index ad2df0d..39549f2 100644 --- a/tests/run/mml-compilation/outputs/456528779.txt +++ b/tests/run/mml-compilation/outputs/456528779.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'D2' value (-1) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/523940048.txt b/tests/run/mml-compilation/outputs/523940048.txt index 389cffb..93cd497 100644 --- a/tests/run/mml-compilation/outputs/523940048.txt +++ b/tests/run/mml-compilation/outputs/523940048.txt @@ -1,8 +1,4 @@ ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/69039091.txt b/tests/run/mml-compilation/outputs/69039091.txt index ad2df0d..39549f2 100644 --- a/tests/run/mml-compilation/outputs/69039091.txt +++ b/tests/run/mml-compilation/outputs/69039091.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'D2' value (-1) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/921911654.txt b/tests/run/mml-compilation/outputs/921911654.txt index 033b1a3..9dc2927 100644 --- a/tests/run/mml-compilation/outputs/921911654.txt +++ b/tests/run/mml-compilation/outputs/921911654.txt @@ -1,2 +1 @@ ERROR: Translator: Parameter 'D2' value (7) is outside of valid range (0 : 3). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) diff --git a/tests/run/mml-compilation/outputs/959474089.txt b/tests/run/mml-compilation/outputs/959474089.txt index 873f9a4..c205e9d 100644 --- a/tests/run/mml-compilation/outputs/959474089.txt +++ b/tests/run/mml-compilation/outputs/959474089.txt @@ -1,4 +1,2 @@ ERROR: Translator: Parameter 'D1' value (-3) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66) ERROR: Translator: Parameter 'FB' value (8) is outside of valid range (0 : 7). Value will be looped. - at: TranslatorUtil::_sanitize_param_loop (src\utils\translator_util.cpp:66)