diff options
| author | Mark Stapp <mjs.ietf@gmail.com> | 2024-12-03 08:57:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-03 08:57:28 -0500 |
| commit | 426dc2b7e2764f90bffc4291f3e2a3a9c03ea71a (patch) | |
| tree | 0a9a05a8021757d9b2bcd9cb5c3ed6159db09bec /tests/topotests/pim_basic/test_pim.py | |
| parent | 6e1eeed50754c99c5593c01cb3983ece71b0549e (diff) | |
| parent | 0d7d795c00c55b1b52e4de35e68b092dd3e77688 (diff) | |
Merge pull request #17547 from donaldsharp/some_cleanups
Some cleanups
Diffstat (limited to 'tests/topotests/pim_basic/test_pim.py')
| -rw-r--r-- | tests/topotests/pim_basic/test_pim.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/topotests/pim_basic/test_pim.py b/tests/topotests/pim_basic/test_pim.py index ce1abe42bb..74d5406970 100644 --- a/tests/topotests/pim_basic/test_pim.py +++ b/tests/topotests/pim_basic/test_pim.py @@ -132,14 +132,14 @@ def test_pim_send_mcast_stream(): # Let's establish a S,G stream from r2 -> r1 CWD = os.path.dirname(os.path.realpath(__file__)) r2.run( - "{}/mcast-tx.py --ttl 5 --count 40 --interval 2 229.1.1.1 r2-eth0 > /tmp/bar".format( - CWD + "{}/mcast-tx.py --ttl 5 --count 40 --interval 2 229.1.1.1 r2-eth0 > {}/r2/mcast_tx_output".format( + CWD, tgen.logdir ) ) # And from r3 -> r1 r3.run( - "{}/mcast-tx.py --ttl 5 --count 40 --interval 2 229.1.1.1 r3-eth0 > /tmp/bar".format( - CWD + "{}/mcast-tx.py --ttl 5 --count 40 --interval 2 229.1.1.1 r3-eth0 > {}/r3/mcast_tx_output".format( + CWD, tgen.logdir ) ) |
