hw: add dummy config to kernel tests

Building a kernel test produced an error about a missing config
apparently because of recent changes in the run tool. So, we add
a dummy XML node as config.

Ref #1972
This commit is contained in:
Martin Stein 2016-05-18 11:57:42 +02:00 committed by Christian Helmuth
parent 6b94e761f8
commit 608df38402
3 changed files with 9 additions and 0 deletions

View File

@ -10,6 +10,9 @@ build "test/cpu_scheduler"
# create directory where the boot files are written to
create_boot_directory
# the init config is not used but the build system needs it
install_config {<dummy/>}
# create single boot image from the compiled program images
set core_test 1
build_boot_image "test-cpu_scheduler"

View File

@ -10,6 +10,9 @@ build "test/double_list"
# create directory where the boot files are written to
create_boot_directory
# the init config is not used but the build system needs it
install_config {<dummy/>}
# create single boot image from the compiled program images
set core_test 1
build_boot_image "test-double_list"

View File

@ -10,6 +10,9 @@ build "test/hw_info"
# create directory where the boot files are written to
create_boot_directory
# the init config is not used but the build system needs it
install_config {<dummy/>}
# create single boot image from the compiled program images
set core_test 1
build_boot_image "test-hw_info"