From eed16f6ba29fee561c93b26140a3363ae983721d Mon Sep 17 00:00:00 2001 From: Claudius 'keldu' Holeksa Date: Mon, 2 Sep 2024 08:43:53 +0200 Subject: Adding codec-unit to builder and commented dummy test --- default.nix | 8 ++++++++ modules/codec-unit/tests/codec-unit.cpp | 6 ++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 944a2d7..1018ce8 100644 --- a/default.nix +++ b/default.nix @@ -40,6 +40,13 @@ in rec { build_examples = "true"; }; + + codec-unit = pkgs.callPackage modules/codec-unit/.nix/derivation.nix { + inherit version; + inherit forstio; + inherit stdenv; + inherit clang-tools; + }; codec-json = pkgs.callPackage modules/codec-json/.nix/derivation.nix { inherit version; @@ -155,6 +162,7 @@ in rec { forstio.core forstio.async forstio.codec + forstio.codec-unit forstio.codec-json forstio.codec-netcdf forstio.io diff --git a/modules/codec-unit/tests/codec-unit.cpp b/modules/codec-unit/tests/codec-unit.cpp index 9fb8012..0c88e9d 100644 --- a/modules/codec-unit/tests/codec-unit.cpp +++ b/modules/codec-unit/tests/codec-unit.cpp @@ -1,14 +1,16 @@ #include -#include +#include namespace { namespace sch { using namespace saw::schema; } +/* SAW_TEST("Dummy Test"){ using namespace saw; - SAW_EXPECT( false, "Dummy" ); + SAW_EXPECT( false, "Dummy" ); } +*/ } -- cgit v1.2.3