aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/fortify/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fortify/default.nix')
-rw-r--r--tests/fortify/default.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/tests/fortify/default.nix b/tests/fortify/default.nix
deleted file mode 100644
index 4342567f..00000000
--- a/tests/fortify/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{
- lib,
- nixosTest,
- writeShellScriptBin,
-
- system,
- self,
- withRace ? false,
-}:
-
-nixosTest {
- name = "fortify" + (if withRace then "-race" else "");
- nodes.machine =
- { options, pkgs, ... }:
- {
- environment.systemPackages = [
- # For go tests:
- self.packages.${system}.fhs
- (writeShellScriptBin "fortify-src" "echo -n ${self.packages.${system}.fortify.src}")
- ];
-
- # Run with Go race detector:
- environment.fortify = lib.mkIf withRace rec {
- # race detector does not support static linking
- package = (pkgs.callPackage ../../package.nix { }).overrideAttrs (previousAttrs: {
- GOFLAGS = previousAttrs.GOFLAGS ++ [ "-race" ];
- });
- fsuPackage = options.environment.fortify.fsuPackage.default.override { fortify = package; };
- };
-
- imports = [
- ./configuration.nix
-
- self.nixosModules.fortify
- self.inputs.home-manager.nixosModules.home-manager
- ];
- };
-
- # adapted from nixos sway integration tests
-
- # testScriptWithTypes:49: error: Cannot call function of unknown type
- # (machine.succeed if succeed else machine.execute)(
- # ^
- # Found 1 error in 1 file (checked 1 source file)
- skipTypeCheck = true;
- testScript = builtins.readFile ./test.py;
-}