summaryrefslogtreecommitdiffstats
path: root/nixos/tests
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2017-02-08 05:16:30 +0100
committerJoachim Fasting <joachifm@fastmail.fm>2017-02-09 16:23:04 +0100
commit28b5cc7dca44db6f229f5c9b8926275865446025 (patch)
tree42cf15af22a22dfa3cac998dc019d25ae78a18be /nixos/tests
parenta9c347b9e378de79fb3b901a9cbdb42e83a1c408 (diff)
grsecurity test: adapt to changes in tinycc outputs
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/grsecurity.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/grsecurity.nix b/nixos/tests/grsecurity.nix
index ee9e0709e5e7..d4a419fd0e39 100644
--- a/nixos/tests/grsecurity.nix
+++ b/nixos/tests/grsecurity.nix
@@ -36,7 +36,7 @@ import ./make-test.nix ({ pkgs, ...} : {
# paxmark actually works (otherwise, the process should be terminated)
subtest "tcc", sub {
$machine->execute("echo -e '#include <stdio.h>\nint main(void) { puts(\"hello\"); return 0; }' >main.c");
- $machine->succeed("${pkgs.tinycc.bin}/bin/tcc -run main.c");
+ $machine->succeed("${pkgs.tinycc}/bin/tcc -run main.c");
};
subtest "RBAC", sub {