about summary refs log tree commit diff
path: root/pkgs/test/make-binary-wrapper/basic.c
diff options
context:
space:
mode:
authorJacek Galowicz <jacek@galowicz.de>2021-12-07 17:39:38 +0000
committerJacek Galowicz <jacek@galowicz.de>2021-12-09 11:32:28 +0000
commit2bc7345064f5fc454282f044589e9f4b288257d4 (patch)
tree632c70a081eca87970c9162c122c6010a9d72bce /pkgs/test/make-binary-wrapper/basic.c
parentf3b16a6b5d9d027f2a5d7f732378b90495c8bcdf (diff)
Add golden effects test
Diffstat (limited to 'pkgs/test/make-binary-wrapper/basic.c')
-rw-r--r--pkgs/test/make-binary-wrapper/basic.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/test/make-binary-wrapper/basic.c b/pkgs/test/make-binary-wrapper/basic.c
index de366c5196306..1c1266181377a 100644
--- a/pkgs/test/make-binary-wrapper/basic.c
+++ b/pkgs/test/make-binary-wrapper/basic.c
@@ -1,9 +1,7 @@
-// makeCWrapper /path/to/executable
-
 #include <unistd.h>
 #include <stdlib.h>
 
 int main(int argc, char **argv) {
-    argv[0] = "/path/to/executable";
-    return execv("/path/to/executable", argv);
+    argv[0] = "/send/me/flags";
+    return execv("/send/me/flags", argv);
 }