tools/bootconfig: Add testcases for value override operator
authorMasami Hiramatsu <mhiramat@kernel.org>
Wed, 15 Jul 2020 16:00:38 +0000 (01:00 +0900)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Mon, 3 Aug 2020 20:22:29 +0000 (16:22 -0400)
Add some testcases and examples for value override operator.

Link: https://lkml.kernel.org/r/159482883824.126704.2166030493721357163.stgit@devnote2
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
tools/bootconfig/samples/bad-override.bconf [new file with mode: 0644]
tools/bootconfig/samples/bad-override2.bconf [new file with mode: 0644]
tools/bootconfig/samples/good-override.bconf [new file with mode: 0644]
tools/bootconfig/test-bootconfig.sh

diff --git a/tools/bootconfig/samples/bad-override.bconf b/tools/bootconfig/samples/bad-override.bconf
new file mode 100644 (file)
index 0000000..fde6c56
--- /dev/null
@@ -0,0 +1,3 @@
+key.subkey = value
+# We can not override pre-defined subkeys with value
+key := value
diff --git a/tools/bootconfig/samples/bad-override2.bconf b/tools/bootconfig/samples/bad-override2.bconf
new file mode 100644 (file)
index 0000000..688587c
--- /dev/null
@@ -0,0 +1,3 @@
+key = value
+# We can not override pre-defined value with subkey
+key.subkey := value
diff --git a/tools/bootconfig/samples/good-override.bconf b/tools/bootconfig/samples/good-override.bconf
new file mode 100644 (file)
index 0000000..7d31d5f
--- /dev/null
@@ -0,0 +1,6 @@
+# Override the value
+key.word = 1,2,4
+key.word := 2,3
+
+# No pre-defined key
+key.new.word := "new"
index 3c2ab9e757303d4480bbed8fa4c91e1cf16e0dfe..56284b98d8f0bc263515543820fb07eafd537b77 100755 (executable)
@@ -117,6 +117,19 @@ xpass grep -q "bar" $OUTFILE
 xpass grep -q "baz" $OUTFILE
 xpass grep -q "qux" $OUTFILE
 
+echo "Override same-key values"
+cat > $TEMPCONF << EOF
+key = bar, baz
+key := qux
+EOF
+echo > $INITRD
+
+xpass $BOOTCONF -a $TEMPCONF $INITRD
+$BOOTCONF $INITRD > $OUTFILE
+xfail grep -q "bar" $OUTFILE
+xfail grep -q "baz" $OUTFILE
+xpass grep -q "qux" $OUTFILE
+
 echo "Double/single quotes test"
 echo "key = '\"string\"';" > $TEMPCONF
 $BOOTCONF -a $TEMPCONF $INITRD