Message ID | 20230517110232.29349-20-jhs@mojatatu.com (mailing list archive) |
---|---|
State | RFC |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | Introducing P4TC | expand |
On Wed, May 17, 2023 at 07:02:24AM -0400, Jamal Hadi Salim wrote: > @@ -28,12 +28,14 @@ NAMES = { > 'EBPFDIR': './' > } > > +ENVIR= {} > > ENVIR = { } Hm? :) > > # put customizations in tdc_config_local.py > try: > from tdc_config_local import * > + > except ImportError as ie: > pass > > -- > 2.25.1 >
On Fri, Jun 2, 2023 at 6:08 PM Marcelo Ricardo Leitner <mleitner@redhat.com> wrote: > > On Wed, May 17, 2023 at 07:02:24AM -0400, Jamal Hadi Salim wrote: > > @@ -28,12 +28,14 @@ NAMES = { > > 'EBPFDIR': './' > > } > > > > +ENVIR= {} > > > > ENVIR = { } > > Hm? :) > Sigh, i was sure we had fixed this - part of a merge issue. We'll take care of it in the next update. cheers, jamal
diff --git a/tools/testing/selftests/tc-testing/tdc_config.py b/tools/testing/selftests/tc-testing/tdc_config.py index ccb0f06ef9e3..60f74011b62f 100644 --- a/tools/testing/selftests/tc-testing/tdc_config.py +++ b/tools/testing/selftests/tc-testing/tdc_config.py @@ -28,12 +28,14 @@ NAMES = { 'EBPFDIR': './' } +ENVIR= {} ENVIR = { } # put customizations in tdc_config_local.py try: from tdc_config_local import * + except ImportError as ie: pass