utils/genrandconfig: test configurations with BR2_SYSTEM_ENABLE_NLS
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 31 Mar 2019 12:21:06 +0000 (14:21 +0200)
committerArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Sun, 14 Apr 2019 09:26:58 +0000 (11:26 +0200)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
utils/genrandconfig

index a2190d6d25d5911f314bad4614810161c42c3141..6cb1bed2140907e0cb462f07c7e1a128acfd26dc 100755 (executable)
@@ -360,6 +360,8 @@ def gen_config(args):
         configlines.append("BR2_PACKAGE_PYTHON_PY_ONLY=y\n")
     if randint(0, 5) == 0:
         configlines.append("BR2_OPTIMIZE_2=y\n")
+    if randint(0, 4) == 0:
+        configlines.append("BR2_SYSTEM_ENABLE_NLS=y\n")
 
     # Write out the configuration file
     if not os.path.exists(args.outputdir):