]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test-network: fix underlying device name
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 16 May 2019 23:40:55 +0000 (08:40 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 18 May 2019 20:27:56 +0000 (05:27 +0900)
test/test-network/systemd-networkd-tests.py

index e1fdf468629b08cbbd29a55783b9bccf41be90db..b06fbc2b70b260e50aab392c01501d6e181ad3ba 100755 (executable)
@@ -77,7 +77,7 @@ def expectedFailureIf_ip6gre_do_not_support_ipv6ll():
             return unittest.expectedFailure(func)
 
         time.sleep(1)
-        rc = subprocess.call(['ip', 'tunnel', 'add', 'tun99', 'local', '2a00:ffde:4567:edde::4986', 'remote', '2001:473:fece:cafe::5178', 'mode', 'ip6gre', 'dev', 'dummy99'])
+        rc = subprocess.call(['ip', 'tunnel', 'add', 'tun99', 'local', '2a00:ffde:4567:edde::4986', 'remote', '2001:473:fece:cafe::5178', 'mode', 'ip6gre', 'dev', 'test1'])
         if rc != 0:
             return unittest.expectedFailure(func)