git.delta.rocks / jrsonnet / refs/commits / 5f11fd70bef6

difftreelog

test reenable more upstream tests

nmyzzlrlYaroslav Bolyukin2026-05-06parent: #6fbe7c6.patch.diff
in: master

6 files changed

addedtests/cpp_test_suite_golden_override/error.function_duplicate_param.jsonnet.goldendiffbeforeafterboth

no changes

addedtests/cpp_test_suite_golden_override/error.parse.object_local_clash.jsonnet.goldendiffbeforeafterboth

no changes

addedtests/go_testdata_golden_override/div3.jsonnet.goldendiffbeforeafterboth

no changes

addedtests/go_testdata_golden_override/number_leading_zero.jsonnet.goldendiffbeforeafterboth

no changes

addedtests/go_testdata_golden_override/pow6.jsonnet.goldendiffbeforeafterboth

no changes

modifiedtests/tests/cpp_test_suite.rsdiffbeforeafterboth
118 // Parser fails with stack overflow. While is a bug, this is a too unusual118 // Parser fails with stack overflow. While is a bug, this is a too unusual
119 // thing to run untrusted jsonnet code? Will be fixed with nom/rowan.119 // thing to run untrusted jsonnet code? Will be fixed with nom/rowan.
120 "error.parse.deep_array_nesting.jsonnet",120 "error.parse.deep_array_nesting.jsonnet",
121 // Runtime, not static error in jrsonnet
122 "error.parse.object_local_clash.jsonnet",
123 "error.function_duplicate_param.jsonnet",
124 // Too slow to throw due to how lazyness is implemented in jrsonnet121 // Too slow to throw due to how lazyness is implemented in jrsonnet
125 "error.recursive_object_non_term.jsonnet",122 "error.recursive_object_non_term.jsonnet",
126 // In jrsonnet returns the one passed argument, works as Rust's dbg!()123 // In jrsonnet returns the one passed argument, works as Rust's dbg!()
135132
136 // Something is wrong, go-jsonnet skips safe integer range check here133 // Something is wrong, go-jsonnet skips safe integer range check here
137 "bitwise_or9.jsonnet",134 "bitwise_or9.jsonnet",
138 // Jrsonnet does not use byte strings, all utf8 is converted to bytes first135 // Bad check: https://github.com/databricks/sjsonnet/issues/793#issuecomment-4323153709
139 "builtinBase64_string_high_codepoint.jsonnet",136 "builtinBase64_string_high_codepoint.jsonnet",
140 // Split by empty string is string characters, same as everywhere else137 // Split by empty string is string characters, same as everywhere else
141 "builtinSplitLimitR6.jsonnet",138 "builtinSplitLimitR6.jsonnet",
142 // escapeStringJson only accepts string in jrsonnet139 // escapeStringJson only accepts string in jrsonnet
143 "builtin_escapeStringJson.jsonnet",140 "builtin_escapeStringJson.jsonnet",
144 // golang float formatting is inefficient and not portable141 // golang float formatting is inefficient and not portable
145 "builtin_manifestTomlEx.jsonnet",142 "builtin_manifestTomlEx.jsonnet",
146 "div3.jsonnet",
147 "pow6.jsonnet",
148 // golang escapes "e" yaml key, does it think it is float?143 // golang escapes "e" yaml key, does it think it is float?
149 "builtin_manifestYamlDoc.jsonnet",144 "builtin_manifestYamlDoc.jsonnet",
150 // multi output is a CLI part, not an interpreter.145 // multi output is a CLI part, not an interpreter.
157 "native2.jsonnet",152 "native2.jsonnet",
158 "native3.jsonnet",153 "native3.jsonnet",
159 "native6.jsonnet",154 "native6.jsonnet",
160 // Since when parser should throw an error for that?..
161 "number_leading_zero.jsonnet",
162 // Golang fails with max stack frames exceeded error155 // Golang fails with max stack frames exceeded error
163 "std.makeArray_recursive_evalutation_order_matters.jsonnet",156 "std.makeArray_recursive_evalutation_order_matters.jsonnet",
164 // Tailstrict semantics is partially unspecified157 // Tailstrict semantics is partially unspecified