Update buildroot 2020.02.01 (#622)

* Update buildroot 2020.02.01

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix LN

* Fix wpa

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix lint

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* fix-network

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix script

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
This commit is contained in:
Pascal Vizeli
2020-04-16 20:03:01 +02:00
committed by GitHub
parent 0c2b5aff65
commit 5a6678147e
6201 changed files with 73436 additions and 70757 deletions

View File

@@ -1,9 +1,10 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
import argparse
import sys
import os
import nose2
import multiprocessing
import os
import sys
import nose2
from infra.basetest import BRConfigTest
@@ -70,7 +71,7 @@ def main():
BRConfigTest.outputdir = os.path.abspath(args.output)
if args.all is False and len(args.testname) == 0:
if args.all is False and not args.testname:
print("No test selected")
print("")
parser.print_help()
@@ -112,7 +113,7 @@ def main():
"-s", test_dir,
"-c", os.path.join(test_dir, "conf/unittest.cfg")]
if len(args.testname) != 0:
if args.testname:
nose2_args += args.testname
nose2.discover(argv=nose2_args)