diff options
| author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-05-28 05:21:57 -0400 |
|---|---|---|
| committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-05-28 14:31:19 -0400 |
| commit | 2bece88f89faad8d2e5499652e2bd5f2045ec92a (patch) | |
| tree | 9e327ae63fc7449e44d65da043c4ecec9ccf1d24 /scripts/kconfig/tests/preprocess/variable | |
| parent | 316d55d55f49eca442e4fd948f5fa92bab0c8312 (diff) | |
kconfig: test: add Kconfig macro language tests
Here are the test cases I used for developing the text expansion
feature.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/tests/preprocess/variable')
| -rw-r--r-- | scripts/kconfig/tests/preprocess/variable/Kconfig | 53 | ||||
| -rw-r--r-- | scripts/kconfig/tests/preprocess/variable/__init__.py | 8 | ||||
| -rw-r--r-- | scripts/kconfig/tests/preprocess/variable/expected_stderr | 9 |
3 files changed, 70 insertions, 0 deletions
diff --git a/scripts/kconfig/tests/preprocess/variable/Kconfig b/scripts/kconfig/tests/preprocess/variable/Kconfig new file mode 100644 index 000000000000..9ce2f95cbd24 --- /dev/null +++ b/scripts/kconfig/tests/preprocess/variable/Kconfig | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | # SPDX-License-Identifier: GPL-2.0 | ||
| 2 | |||
| 3 | # Shorthand | ||
| 4 | warning = $(warning-if,y,$(1)) | ||
| 5 | |||
| 6 | # Simply expanded variable. | ||
| 7 | X := 1 | ||
| 8 | SIMPLE := $(X) | ||
| 9 | X := 2 | ||
| 10 | $(warning,SIMPLE = $(SIMPLE)) | ||
| 11 | |||
| 12 | # Recursively expanded variable. | ||
| 13 | X := 1 | ||
| 14 | RECURSIVE = $(X) | ||
| 15 | X := 2 | ||
| 16 | $(warning,RECURSIVE = $(RECURSIVE)) | ||
| 17 | |||
| 18 | # Append something to a simply expanded variable. | ||
| 19 | Y := 3 | ||
| 20 | SIMPLE += $(Y) | ||
| 21 | Y := 4 | ||
| 22 | $(warning,SIMPLE = $(SIMPLE)) | ||
| 23 | |||
| 24 | # Append something to a recursively expanded variable. | ||
| 25 | Y := 3 | ||
| 26 | RECURSIVE += $(Y) | ||
| 27 | Y := 4 | ||
| 28 | $(warning,RECURSIVE = $(RECURSIVE)) | ||
| 29 | |||
| 30 | # Use += operator to an undefined variable. | ||
| 31 | # This works as a recursively expanded variable. | ||
| 32 | Y := 3 | ||
| 33 | UNDEFINED_VARIABLE += $(Y) | ||
| 34 | Y := 4 | ||
| 35 | $(warning,UNDEFINED_VARIABLE = $(UNDEFINED_VARIABLE)) | ||
| 36 | |||
| 37 | # You can use variable references for the lefthand side of assignment statement. | ||
| 38 | X := A | ||
| 39 | Y := B | ||
| 40 | $(X)$(Y) := 5 | ||
| 41 | $(warning,AB = $(AB)) | ||
| 42 | |||
| 43 | # User-defined function. | ||
| 44 | greeting = $(1), my name is $(2). | ||
| 45 | $(warning,$(greeting,Hello,John)) | ||
| 46 | |||
| 47 | # The number of arguments is not checked for user-defined functions. | ||
| 48 | # If some arguments are optional, it is useful to pass fewer parameters. | ||
| 49 | # $(2) will be blank in this case. | ||
| 50 | $(warning,$(greeting,Hello)) | ||
| 51 | |||
| 52 | # Unreferenced parameters are just ignored. | ||
| 53 | $(warning,$(greeting,Hello,John,ignored,ignored)) | ||
diff --git a/scripts/kconfig/tests/preprocess/variable/__init__.py b/scripts/kconfig/tests/preprocess/variable/__init__.py new file mode 100644 index 000000000000..e88b1708d6d4 --- /dev/null +++ b/scripts/kconfig/tests/preprocess/variable/__init__.py | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # SPDX-License-Identifier: GPL-2.0 | ||
| 2 | """ | ||
| 3 | Variable and user-defined function tests. | ||
| 4 | """ | ||
| 5 | |||
| 6 | def test(conf): | ||
| 7 | assert conf.oldaskconfig() == 0 | ||
| 8 | assert conf.stderr_matches('expected_stderr') | ||
diff --git a/scripts/kconfig/tests/preprocess/variable/expected_stderr b/scripts/kconfig/tests/preprocess/variable/expected_stderr new file mode 100644 index 000000000000..a4841c3fdff5 --- /dev/null +++ b/scripts/kconfig/tests/preprocess/variable/expected_stderr | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | Kconfig:10: SIMPLE = 1 | ||
| 2 | Kconfig:16: RECURSIVE = 2 | ||
| 3 | Kconfig:22: SIMPLE = 1 3 | ||
| 4 | Kconfig:28: RECURSIVE = 2 4 | ||
| 5 | Kconfig:35: UNDEFINED_VARIABLE = 4 | ||
| 6 | Kconfig:41: AB = 5 | ||
| 7 | Kconfig:45: Hello, my name is John. | ||
| 8 | Kconfig:50: Hello, my name is . | ||
| 9 | Kconfig:53: Hello, my name is John. | ||
