diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-08-16 21:35:49 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-08-16 21:35:49 +0100 |
commit | 0453dc88253aec7e13b4db773873e73ffdd434cd (patch) | |
tree | 474ca3a3aa60ff05743364048ed597ef4bff26bf | |
parent | Adds the [input] streaming interfaces (diff) | |
download | slicer-0453dc88253aec7e13b4db773873e73ffdd434cd.tar.bz2 slicer-0453dc88253aec7e13b4db773873e73ffdd434cd.tar.xz slicer-0453dc88253aec7e13b4db773873e73ffdd434cd.zip |
Order list of components in preprocessor test
-rw-r--r-- | slicer/test/preprocessor.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/slicer/test/preprocessor.cpp b/slicer/test/preprocessor.cpp index cd2cd8d..b37b18b 100644 --- a/slicer/test/preprocessor.cpp +++ b/slicer/test/preprocessor.cpp @@ -12,17 +12,17 @@ namespace fs = boost::filesystem; typedef std::map<std::string, unsigned int> ComponentsCount; ComponentsCount COMPONENTS_IN_TEST_ICE = { - { "enums.ice", 2 }, - { "structs.ice", 4 }, { "classes.ice", 4 }, - { "optionals.ice", 1 }, { "collections.ice", 6 }, + { "db.ice", 4 }, + { "enums.ice", 2 }, { "inheritance.ice", 12 }, { "interfaces.ice", 0 }, { "json.ice", 2 }, - { "xml.ice", 5 }, - { "db.ice", 4 }, - { "types.ice", 3 } + { "optionals.ice", 1 }, + { "structs.ice", 4 }, + { "types.ice", 3 }, + { "xml.ice", 5 } }; unsigned int |