From 1a6c67af3851748a0a604e3b3e99bd63f3f576a0 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 3 Nov 2020 06:11:09 +0100 Subject: Remove ability to use git projects as dependencies. Users can add them as git submodules instead --- tests/src/confTest/confTest.cpp | 14 +------------- tests/src/confTest/validProject.conf | 1 - 2 files changed, 1 insertion(+), 14 deletions(-) (limited to 'tests/src/confTest') diff --git a/tests/src/confTest/confTest.cpp b/tests/src/confTest/confTest.cpp index ec8a563..68e2225 100644 --- a/tests/src/confTest/confTest.cpp +++ b/tests/src/confTest/confTest.cpp @@ -1,4 +1,4 @@ -#include +#include #include "../../../include/Conf.hpp" using namespace sibs; @@ -32,18 +32,6 @@ TEST_CASE("parse config") REQUIRE(catch2Dependency->name == "catch2"); REQUIRE(catch2Dependency->version.toString() == ">=1.0.0 and <2.0.0"); - REQUIRE(sibsConfig.getGitDependencies().size() == 1); - for(auto *dep : sibsConfig.getGitDependencies()) - { - REQUIRE(dep->getSource() == Dependency::Source::GIT); - } - const Dependency *sfmlAllDependency = sibsConfig.getGitDependencies()[0]; - const GitDependency *sfmlAllDependencyGit = sfmlAllDependency->asGitDependency(); - REQUIRE(sfmlAllDependencyGit->name == "sfml-all"); - REQUIRE(sfmlAllDependencyGit->url == "https://github.com/DEC05EBA/sfml-all.git"); - REQUIRE(sfmlAllDependencyGit->branch == "master"); - REQUIRE(sfmlAllDependencyGit->revision == "HEAD"); - REQUIRE(sibsConfig.shouldUseCmake()); REQUIRE(sibsConfig.getCmakeDir() == TINYDIR_STRING("tests/src/confTest/cmakeGlobal")); diff --git a/tests/src/confTest/validProject.conf b/tests/src/confTest/validProject.conf index c5232c6..cd3f9cc 100644 --- a/tests/src/confTest/validProject.conf +++ b/tests/src/confTest/validProject.conf @@ -7,7 +7,6 @@ platforms = ["linux64", "win64"] [dependencies] xxhash = "0.1.0" # random comment at end of line catch2 = "1.0.0" -sfml-all = { git = "https://github.com/DEC05EBA/sfml-all.git", branch = "master" } # cmake building is currrently not implemented, but it is intended to work like this [cmake] -- cgit v1.2.3