Skip to content
Success

#6 (May 27, 2026, 7:26:10 PM)

Started 2 days 15 hr ago
Took 0.67 sec on build4-deb12build-ansible

Started by an SCM change

This run spent:

  • 8.8 sec waiting;
  • 0.67 sec build duration;
  • 9.4 sec total from scheduled to completion.
Revision: bb772eea0ddc250896ca078cfb28956edad0f9d4
Repository: https://gerrit.osmocom.org/python/osmo-python-tests
  • origin/master
osmo_interact: improve vty transcript language by a regular rexex

Currently the transcript language understand 3 different tokens:
... (ignore all lines until the following line matches)
... !REGEX (ignore all lines except REXEX)

But to support osmo-stp with different compile options, the
vty help is indented with different amount of spaces depending on the compile options.
To support those add a regular regex using the prefix !r!

E.g.
```
OsmoSTP(config-cs7-as)# ?
-  description       Save human-readable description of the object
vs
+  description               Save human-readable description of the object
```

To use the new regex, the line would be:
```
!r!  description[ ]+Save human-readable description of the object
```

Further all regex special characters needs to be escaped.
```
  description   Save human-readable description of the object (for humans)

!r!  description[ ]+Save human-readable description of the object \(for humans\)
```

Change-Id: Iadcd7a8c3677548a6405e098fe53d0614ef2012c
lynxis at