From ad3b5099263e5977d1de9bfcff715a92009e8355 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 6 Jan 2018 09:38:59 +0100 Subject: Add define.static, define.dynamic --- tests/src/confTest/confTest.cpp | 30 ++++++++++++++++++++++++++++++ tests/src/confTest/defineDynamic.conf | 17 +++++++++++++++++ tests/src/confTest/defineStatic.conf | 17 +++++++++++++++++ 3 files changed, 64 insertions(+) create mode 100644 tests/src/confTest/defineDynamic.conf create mode 100644 tests/src/confTest/defineStatic.conf (limited to 'tests') diff --git a/tests/src/confTest/confTest.cpp b/tests/src/confTest/confTest.cpp index 44bcab0..f3d9e2b 100644 --- a/tests/src/confTest/confTest.cpp +++ b/tests/src/confTest/confTest.cpp @@ -74,3 +74,33 @@ TEST_CASE("parse config - use different config for different platforms") #endif #endif } + +TEST_CASE("parse config - define static") +{ + SibsConfig sibsConfig(Compiler::GCC, TINYDIR_STRING("tests/src/confTest"), OPT_LEV_DEBUG, false); + Result result = Config::readFromFile(TINYDIR_STRING("tests/src/confTest/defineStatic.conf"), sibsConfig); + if(result.isErr()) + { + fprintf(stderr, "%s", result.getErrMsg().c_str()); + exit(1); + } + + REQUIRE(sibsConfig.getDefinedValue("GLOBAL_DEFINE") == "1"); + REQUIRE(sibsConfig.getDefinedValue("BUILD_STATIC") == "1"); + REQUIRE(sibsConfig.getDefinedValue("DEFINE_TYPE") == "STATIC"); +} + +TEST_CASE("parse config - define dynamic") +{ + SibsConfig sibsConfig(Compiler::GCC, TINYDIR_STRING("tests/src/confTest"), OPT_LEV_DEBUG, false); + Result result = Config::readFromFile(TINYDIR_STRING("tests/src/confTest/defineDynamic.conf"), sibsConfig); + if(result.isErr()) + { + fprintf(stderr, "%s", result.getErrMsg().c_str()); + exit(1); + } + + REQUIRE(sibsConfig.getDefinedValue("GLOBAL_DEFINE") == "1"); + REQUIRE(sibsConfig.getDefinedValue("BUILD_STATIC") == "0"); + REQUIRE(sibsConfig.getDefinedValue("DEFINE_TYPE") == "DYNAMIC"); +} diff --git a/tests/src/confTest/defineDynamic.conf b/tests/src/confTest/defineDynamic.conf new file mode 100644 index 0000000..fb08e5c --- /dev/null +++ b/tests/src/confTest/defineDynamic.conf @@ -0,0 +1,17 @@ +[package] +name = "glew" +version = "2.1.0" +type = "dynamic" +platforms = ["any"] + +[define] +GLOBAL_DEFINE = "1" +DEFINE_TYPE = "GLOBAL" + +[define.static] +BUILD_STATIC = "1" +DEFINE_TYPE = "STATIC" + +[define.dynamic] +BUILD_STATIC = "0" +DEFINE_TYPE = "DYNAMIC" diff --git a/tests/src/confTest/defineStatic.conf b/tests/src/confTest/defineStatic.conf new file mode 100644 index 0000000..8ec0d8c --- /dev/null +++ b/tests/src/confTest/defineStatic.conf @@ -0,0 +1,17 @@ +[package] +name = "glew" +version = "2.1.0" +type = "static" +platforms = ["any"] + +[define] +GLOBAL_DEFINE = "1" +DEFINE_TYPE = "GLOBAL" + +[define.static] +BUILD_STATIC = "1" +DEFINE_TYPE = "STATIC" + +[define.dynamic] +BUILD_STATIC = "0" +DEFINE_TYPE = "DYNAMIC" -- cgit v1.2.3