Bench Test IAC Valve fails #3534
This commit is contained in:
parent
8d154b94df
commit
c2c335ea6d
Binary file not shown.
|
@ -17,9 +17,16 @@ public class EnumsReader {
|
||||||
* core implementation sorts by name, we need special considerations to sort by value
|
* core implementation sorts by name, we need special considerations to sort by value
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
static List<Value> getSortedByOrder(VariableRegistry registry, Map<String, Value> brain_pin_e) {
|
static List<Value> getSortedByOrder(VariableRegistry registry, Map<String, Value> enumValues) {
|
||||||
|
Set<Integer> ids = new TreeSet<>();
|
||||||
|
for (Value value : enumValues.values()) {
|
||||||
|
boolean isUniqueId = ids.add(value.getIntValueMaybeResolve(registry));
|
||||||
|
if (!isUniqueId)
|
||||||
|
throw new IllegalArgumentException("Ordinal duplication? " + value);
|
||||||
|
}
|
||||||
|
|
||||||
Set<Value> byOrdinal = new TreeSet<>(Comparator.comparingInt(value -> value.getIntValueMaybeResolve(registry)));
|
Set<Value> byOrdinal = new TreeSet<>(Comparator.comparingInt(value -> value.getIntValueMaybeResolve(registry)));
|
||||||
byOrdinal.addAll(brain_pin_e.values());
|
byOrdinal.addAll(enumValues.values());
|
||||||
return new ArrayList<>(byOrdinal);
|
return new ArrayList<>(byOrdinal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ public class ToJavaEnum {
|
||||||
for (Value value : sorted) {
|
for (Value value : sorted) {
|
||||||
int numericValue = value.getIntValueMaybeResolve(registry);
|
int numericValue = value.getIntValueMaybeResolve(registry);
|
||||||
if (index != numericValue && !value.getName().startsWith("Force_4_bytes_size"))
|
if (index != numericValue && !value.getName().startsWith("Force_4_bytes_size"))
|
||||||
throw new IllegalStateException(numericValue + " instead of " + index + " in " + value);
|
throw new IllegalStateException("Got explicit ordinal " + numericValue + " instead of ordinal " + index + " in " + value);
|
||||||
sb.append("\t" + value.getName() + ",\n");
|
sb.append("\t" + value.getName() + ",\n");
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue