diff --git a/src/libstore-tests/local-overlay-store.cc b/src/libstore-tests/local-overlay-store.cc index fe064c3a5..175e5d0f4 100644 --- a/src/libstore-tests/local-overlay-store.cc +++ b/src/libstore-tests/local-overlay-store.cc @@ -1,9 +1,6 @@ -// FIXME: Odd failures for templates that are causing the PR to break -// for now with discussion with @Ericson2314 to comment out. -#if 0 -# include +#include -# include "nix/store/local-overlay-store.hh" +#include "nix/store/local-overlay-store.hh" namespace nix { @@ -31,4 +28,3 @@ TEST(LocalOverlayStore, constructConfig_rootPath) } } // namespace nix -#endif diff --git a/src/libstore-tests/local-store.cc b/src/libstore-tests/local-store.cc index ece277609..cdbc29b03 100644 --- a/src/libstore-tests/local-store.cc +++ b/src/libstore-tests/local-store.cc @@ -1,15 +1,12 @@ -// FIXME: Odd failures for templates that are causing the PR to break -// for now with discussion with @Ericson2314 to comment out. -#if 0 -# include +#include -# include "nix/store/local-store.hh" +#include "nix/store/local-store.hh" // Needed for template specialisations. This is not good! When we // overhaul how store configs work, this should be fixed. -# include "nix/util/args.hh" -# include "nix/util/config-impl.hh" -# include "nix/util/abstract-setting-to-json.hh" +#include "nix/util/args.hh" +#include "nix/util/config-impl.hh" +#include "nix/util/abstract-setting-to-json.hh" namespace nix { @@ -37,4 +34,3 @@ TEST(LocalStore, constructConfig_rootPath) } } // namespace nix -#endif diff --git a/src/libstore-tests/ssh-store.cc b/src/libstore-tests/ssh-store.cc index ccb87b767..3c2af311f 100644 --- a/src/libstore-tests/ssh-store.cc +++ b/src/libstore-tests/ssh-store.cc @@ -1,9 +1,8 @@ -// FIXME: Odd failures for templates that are causing the PR to break -// for now with discussion with @Ericson2314 to comment out. -#if 0 -# include +#include -# include "nix/store/ssh-store.hh" +#include "nix/store/ssh-store.hh" +#include "nix/util/config-impl.hh" +#include "nix/util/abstract-setting-to-json.hh" namespace nix { @@ -51,5 +50,4 @@ TEST(MountedSSHStore, constructConfig) })); } -} -#endif +} // namespace nix diff --git a/src/libstore-tests/uds-remote-store.cc b/src/libstore-tests/uds-remote-store.cc index c6a926668..c215d6e18 100644 --- a/src/libstore-tests/uds-remote-store.cc +++ b/src/libstore-tests/uds-remote-store.cc @@ -1,9 +1,6 @@ -// FIXME: Odd failures for templates that are causing the PR to break -// for now with discussion with @Ericson2314 to comment out. -#if 0 -# include +#include -# include "nix/store/uds-remote-store.hh" +#include "nix/store/uds-remote-store.hh" namespace nix { @@ -20,4 +17,3 @@ TEST(UDSRemoteStore, constructConfigWrongScheme) } } // namespace nix -#endif