File tree 3 files changed +22
-1
lines changed
3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -916,6 +916,10 @@ message CameraDetection
916
916
//
917
917
enum Color
918
918
{
919
+ // Allow aliases in enum
920
+ //
921
+ option allow_alias = true ;
922
+
919
923
// Color of the shape is unknown (must not be used in ground
920
924
// truth).
921
925
//
@@ -931,6 +935,7 @@ message CameraDetection
931
935
932
936
// Shape with gray color.
933
937
//
938
+ COLOR_GRAY = 3 ;
934
939
COLOR_GREY = 3 ;
935
940
936
941
// Shape with white color.
Original file line number Diff line number Diff line change @@ -223,6 +223,10 @@ message StationaryObject
223
223
//
224
224
enum Material
225
225
{
226
+ // Allow aliases in enum
227
+ //
228
+ option allow_alias = true ;
229
+
226
230
// Type of the material is unknown (must not be used in ground
227
231
// truth).
228
232
//
@@ -254,6 +258,7 @@ message StationaryObject
254
258
255
259
// Glass structure.
256
260
//
261
+ MATERIAL_GLASS = 7 ;
257
262
MATERIAL_GLAS = 7 ;
258
263
259
264
// Mud structure.
@@ -303,6 +308,10 @@ message StationaryObject
303
308
//
304
309
enum Color
305
310
{
311
+ // Allow aliases in enum
312
+ //
313
+ option allow_alias = true ;
314
+
306
315
// Color is unknown (must not be used in ground truth).
307
316
//
308
317
COLOR_UNKNOWN = 0 ;
@@ -339,8 +348,9 @@ message StationaryObject
339
348
//
340
349
COLOR_BLACK = 8 ;
341
350
342
- // GREY .
351
+ // GRAY .
343
352
//
353
+ COLOR_GRAY = 9 ;
344
354
COLOR_GREY = 9 ;
345
355
346
356
// White.
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ def test_correct_enum_name(self):
25
25
if matchComment is not None :
26
26
statement = line [: matchComment .start ()]
27
27
comment = line [matchComment .end () :]
28
+ elif re .search ("option allow_alias" , line ):
29
+ statement = ""
30
+ comment = ""
28
31
else :
29
32
statement = line
30
33
comment = ""
@@ -123,6 +126,9 @@ def test_invalid_enum(self):
123
126
if matchComment is not None :
124
127
statement = line [: matchComment .start ()]
125
128
comment = line [matchComment .end () :]
129
+ elif re .search ("option allow_alias" , line ):
130
+ statement = ""
131
+ comment = ""
126
132
else :
127
133
statement = line
128
134
comment = ""
You can’t perform that action at this time.
0 commit comments