mbed-os/tools/test/config_test
Bogdan Marinescu ab0a5a53c2 Configuration in header files - step 1
The current implementation of the configuration system "compiles" the
configuration parameters to macros defined on the command line. This
works, but has a few limitations:

- it can bring back the maximum command line length issues in Windows.
- depending on the type of the configuration parameter, it might require
  special quoting of its value in the command line.
- various 3rd party IDE/tools seem to have some limitations regarding
  the total length of the macros that can be defined.

This commit is the first step in replacing the current mechanism with
one that generates configuration in header files that will be
automatically included, instead of command line macro definitions. The
commit only adds the method for generating the header file, it doesn't
actually change the way config is used yet (that will happen in step 2),
thus it is backwards compatible. The logic of the configuration system
itself is unchanged (in fact, the whole change (not only this commit) is
supposed to be completely transparent for the users of the configuration
system).

The commit also fixes an issue in tools/get_config.py that appeared as a
result of a recent PR: the signature of "get_config" in
tools/build_api.py changed, but tools/get_config.py was not updated.
2016-06-16 00:23:04 +03:00
..
test01 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test02 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test03 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test04 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test05 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test06 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test07 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test08 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test09 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test10 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test11 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test12 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test13 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test14 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test15 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test16 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test17 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test18 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test19 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test20 Add tests to the config system. Add GCC flags to support uVisor 2016-06-12 19:04:41 +01:00
test21 [build tools] Added proper namespace for features 2016-06-15 10:34:32 -05:00
test22 [build tools] Added proper namespace for features 2016-06-15 10:34:32 -05:00
test23 [build tools] Added proper namespace for features 2016-06-15 10:34:32 -05:00
test24 [build tools] Added proper namespace for features 2016-06-15 10:34:32 -05:00
test25 [build tools] Added proper namespace for features 2016-06-15 10:34:32 -05:00
test26 [build tools] Added proper namespace for features 2016-06-15 10:34:32 -05:00
config_test.py Configuration in header files - step 1 2016-06-16 00:23:04 +03:00